• I want the option when posting the blogs, a option where user can select whether the post should include in the frontpage or not.

    option such as:

    Post in Frontpage: []*

    * Only when i check the option above, the post goes in the frontpage otherwise the post go into the category but it doesn’t show up in the frontpage.

    Thank you,

Viewing 1 replies (of 1 total)
  • You could make a category for that and then only show posts from that category on the home page. I think the code you be

    <?php
       if (is_home()) {
          query_posts("cat=5");
       }
    ?>

    You would change the 5 to whatever the category id is that you choose for the home page.

Viewing 1 replies (of 1 total)
  • The topic ‘blog in the frontpage’ is closed to new replies.