Highlight my current post title
-
how to post list of all title post on sidebar and highlight current post title in single page using wp-query just check my code below and help me to highlight current post title
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. Also the
<ul>
messes with the formatting of the post here. ]<div class="right"> <ul> <li style="border-bottom: 1px solid black;"><strong>SERVICES OFFERED</strong> <?php $args = array( 'post_type' => 'services', 'posts_per_page' => 10, 'order'=>'DESC'); $loop = new WP_Query( $args ); if ($loop->have_posts()) : while ($loop->have_posts()) : $loop->the_post();?> <li><a>" style="color:black;"><?php the_title() ?></a></li> <?php endwhile; ?> <?php endif; ?> </ul>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Highlight my current post title’ is closed to new replies.