How can i make wordpress blog event titles clickable and direct to their respective post itself? Thank you!
<li id="post-<?php the_ID(); ?>" <?php post_class( 'stm_post_info' ); ?>>
<?php if( get_the_title() ): ?>
<h4 class="stripe_2"><?php the_title(); ?></h4>
<?php endif; ?>
How can i make wordpress blog event titles clickable and direct to their respective post itself? Thank you!
<li id="post-<?php the_ID(); ?>" <?php post_class( 'stm_post_info' ); ?>>
<?php if( get_the_title() ): ?>
<h4 class="stripe_2"><?php the_title(); ?></h4>
<?php endif; ?>
Share
Improve this question
edited Aug 23, 2019 at 12:32
fuxia♦
107k39 gold badges255 silver badges459 bronze badges
asked Aug 23, 2019 at 11:06
SamuelSamuel
31 bronze badge
2 Answers
Reset to default 0<li id="post-<?php the_ID(); ?>" <?php post_class( 'stm_post_info' ); ?>>
<?php if( get_the_title() ): ?>
<h4 class="stripe_2"><a href="<?php the_permalink() ?>" ><?php the_title(); ?></a></h4>
<?php endif; ?>
Please try this
You can also try below one :
<li id="post-<?php the_ID(); ?>" <?php post_class( 'stm_post_info' ); ?>>
<?php if( get_the_title() ): ?> <h4 class="stripe_2"><a href="<?php echo get_permalink($post->ID);?>" ><?php the_title(); ?></a></h4><?php endif; ?>
that is more specific with particular post
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745221668a4617277.html
评论列表(0条)