Status
Not open for further replies.

jVex

Banned
Banned
359
2010
60
0
So, I have started a new Wordpress blog. I have created a new page. How do I move posts to other pages then the front page?

I've looked all over in the dashboard and on Wordpress forums for help. I feel like an idiot, it's something so simple. Anybody have this issue before or know how to fix it?

All I am simply trying to do is move this post "lil waye to retire" to the "news" page.

Here's the site I'm having trouble with. http://hiphopescape.com/
 
7 comments
There is nothing to "fix" - that's just how WordPress works. Your latest posts are show in the homepage, the category pages show only posts in that specific category.

If for some reason you want to exclude posts from a specific category from showing on the homepage, you can add this code to your index.php file:

<?php
if ( is_home() ) {
query_posts( 'cat=-3' );
}
?>

Where "3" is the category ID you wanna exclude.
 
Status
Not open for further replies.
Back
Top