Show specific post on the front page
-
According to this string, is there a way that we can choose any post ID to show on the front page, instead of showing the latest post of that category?
<?php $my_query = new WP_Query(‘category_name=featured&showposts=1’);
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
- The topic ‘Show specific post on the front page’ is closed to new replies.