I only want desired post to show when someone comes to my blog. How Do I do thiI adjust setting so new posts dont show on landing page it doesnt allow to put zero can I set it somehow to only show sticky posts.
Thank you
I only want desired post to show when someone comes to my blog. How Do I do thiI adjust setting so new posts dont show on landing page it doesnt allow to put zero can I set it somehow to only show sticky posts.
Thank you
sorry, can you clarify. I want to sticky post to show and no other posts. Where do I put the coding in my wordpress admin panel?
Thanks
You have to add the relevant custom query to your theme's index.php template file. Try adding something like:
$args = array(
'posts_per_page' => -1,
'post__in' => get_option('sticky_posts'),
'caller_get_posts' => 1
);
query_posts($args);
just before the Loop in that file.
This topic has been closed to new replies.