Hi friends, I have a wordpress blog and it has subpages with names games and vidoes Blog url: xyz.com Video: xyz.com/videos Games: xyz.com/games I will post the games and videos in the respective pages only. I want the latest video and game to be appeared in the main page. Can someone please tell me if there is any plugin for this feature? Should I tweak the template? Thanks, leela
Why not seperate them into category? You can get posts from a particular category using the magic code below <?php query_posts('category=category-name'); ?> Where category-name is the name of the category itself.
I will create a separate category for both of them and also separate pages for each of it, I want only the latest post (1 post ) from these categories into my main page Thanks for your response
Then please tweak index.php <?php query_posts('category_name=movies&showposts=1'); ?> <?php query_posts('category_name=games&showposts=1'); ?> Alternative, try http://www.dagondesign.com/articles/latest-post-from-each-category-plugin-for-wordpress/
you need to specify particular category in the options page. then games/vedios will appear on the main page...