Forums

How to Only show desired stickyposts to when someone lands on site (4 posts)

  1. tear11
    Member
    Posted 1 year ago #

    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

  2. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

  3. tear11
    Member
    Posted 1 year ago #

    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

  4. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    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.

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.