Change Page order WordPress
When we want to change the page orders in wordpress, at first it happened two “home” tabs showed up. After we change “order” level in Pages settings, it’s still not working. There is a helpful codex, which is wp_list_pages. There are many ways to change the order in which page tabs are displayed in your wordpress blog or website.
Tips: You might want to see my other video which changing page order can be easily done by changing number under “order” in Admin/Pages click, “quick edit”. These numbers defines the order of the page list.
If this tip doesn’t works for you, then we will modify some codes in header.php.
In this video tutorial, You will discover:
1. Cool plugin: My page order plugin
2. Find out what and where you can find page ID in WordPress.
This is the code:
<?php wp_list_pages('title_li=&include=35,2,37,39');?>
35, 2, 37, 39 are the pages IDs, obviously you want to replace this numbers with your page IDs.
I happened to include all pages ID i want in my site by editing header.php and it worked. I recommmend that you back up your file before making any changing. I hope it will be a tiny help for my beginner blogger friends.
//Updates: wordpress 3.0 Twenty Ten users, i have made another video how to change page settings.
Related posts:
- Change “Home” page in your wordpress site to your own created page
- Pagination or page number WordPress
- WordPress Change “Home” Page
- Multiple blog posts in WordPress
- How to change permalinks wordpress
- How to change wordpress database table prefix
- Add .html to wordpress
- Add or Change Favicon WordPress
Hey thanks for visiting my blogI actually used a plugin to fix the issue.I am still having some trouble in fixing the 2 home pages without that plugin.I will see what happens when I try this method and keep you updated.Thanks anyway
@Charles, I personally do not use plugins too much as it can slow down page loading speed. I used to have more than 20 plugins, i reduce it to 7 plugins only.