There are several posts that I dont want them to show in the front page as I create them. I just want my users to go the specific category and see the posts. but I want others to be seen in the front page Is there a plug in that will allow me to select the post and categories to show in the index?
thanks
Jose
Why not to create a category in your blog called "FrontPage". Then make your index.php just loop through posts in this category. You could create a loop like this:
<?php if(in_category('FrontPage') ) { ?>
// put normal loop etc in here
<?php } ?>
Done, Thanks guys! I did the loop and is 80% of what i wanted and will do for now....
Jose