admin管理员组

文章数量:1415645

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
Add a comment  | 

2 Answers 2

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

本文标签: How can i make wordpress blog title clickable and direct to the post itself