WordPress Plugin – My Page Order Archived  

This page is an archive for the older versions of My Page Order. All new comments should be made here.

Gives you manual control over the order of your WordPress pages by letting you easily set an explicit order. Works with subpages too. Now with built-in Widget support.

If you’d like to say thank you or make a donation please visit my Gifts and Donations page.

Download My Page Order:

Updates:

  • Update 3/30/2008: For WP 2.5, I’ve moved all future downloads to the WordPress Plugin directory. This page will stay up as a testament to this plugin’s popularity over the past 2 years.
  • Update 9/30/2007: Checked compatibility with WP 2.3.
  • Update 6/30/2007: The release you’ve all been waiting for!!! Built in widget support, hacking the widgets.php file is a thing of the past.
  • Update 5/17/2007: Javascript include bug fix, won’t mess up the editor now, redownload if you had the previous 2.1.3 version. 2.2 update coming soon but current version should still be compatible. Things are good with 2.2.
  • Update 5/10/2007: Big update! I rewrote the interface and replaced the unfriendly up and down arrows with spiffy new drag and drop ordering. Check it out, definitely worth the upgrade, I’ve only tested on 2.1.3 but it should work on any 2.1.x install.
  • Update 1/22/2007: Updated to WP 2.1.
  • Update 1/14/2007: Checked compatibility with WP 2.0.6, no changes needed.
  • Update 9/8/2006: Checked compatibility with WP 2.0.4, removed annoying javascript popup warning when arrows were clicked without anything selected, pages with no subpages will no longer show up in the dropdown, change to prevent submission if nothing selected in dropdown.

This is my third WordPress Plugin and I’m continuing with the idea of being able to control the order of how things are displayed. Categories and Links have various means of being ordered, there’s just no way to manually set an order.

Pages on the other hand have a means of specifying an order which was introduced in WP 2.0. The Page Order tab was added on the Write Page screen. The way this ordering is implemented though makes it completely useless. The order doesn’t automatically increment when you start a new page and it is a major pain to insert a page where you want it. Got a new page you want to insert at the top of 25 other pages? Have fun incrementing the order on 25 pages (unless it accepts a negative number which is just another bad idea).

This plugin gives you a simple interface that allows you to arrange the order of your static pages. It uses and sets the same field in the database as WP does so if you have set an order before it will be preserved.

Installation instructions:

  1. Move mypageorder.php to /wp-content/plugins/
  2. Activate the My Page Order plugin on the Plugins menu
  3. Go to the “My Page Order” tab under Manage and specify your desired order for pages
  4. If you are using widgets then just make sure the “Page” widget is set to order by “Page order”. That’s it.
  5. If you aren’t using widgets, modify your sidebar template to use correct sort parameter, “sort_column=menu_order”:
    wp_list_pages(‘sort_column=menu_order&title_li=<h2>Pages</h2>’);

Sort attribute

In your templates (accessible through the theme editor or downloading the file off the server) there might be several places your list of pages gets outputed. To use your sort order each instance must have the sort column argument set like the following:

wp_list_pages(‘sort_column=menu_order’);

That’s it. Out of the box everything is there to make the manual ordering happen, it just needs a better interface to make it less time consuming for the WP user to manage and my plugin is really just a stopgap measure until something better gets built into the WP release.

If you have any problems let me know, I am more than happy to help resolve any issues you may have. I’ll respond to your comment through email so be sure to put a valid email in. Even if you don’t have problems leave a comment or throw a couple bucks to buy some beer.

398 Responses to WordPress Plugin – My Page Order Archived

  1. Jan says:

    Great! I was thinking about implementing something like this for a long time. Is there a way to enable drag’n'drop for the lists?

  2. Andrew says:

    That would definetely be something for My Page Order 2.0, I haven’t done an interface like that but it would be good experience for me. If I have time in the future to improve the plugin that would be on the list.

  3. driz says:

    Cool! Thanks

  4. ditdotdat says:

    That’s great, thanks. I’m setting up a school site using WordPress as a CMS and I’d say that your plugin is a must have for anyone doing this.

  5. Gareth says:

    I don’t think this works in conjunction with Widgets, my page order won’t change.

  6. Andrew says:

    It is unlikely it would work unless there is a way to tell the widgets to sort off the menu order like you can do with the standard template tags. I haven’t used widgets so I’m not going to be much help there.

  7. Chris says:

    First, the page order works great. Perfect, in fact. My question has to do with the formatting of the “Pages” title. I had to change this:

    Pages’); ?>

    To this:

    How can I bring back the title formatting?

  8. Chris says:

    Sorry, my above comment code wasn’t formatted right to display (silly me). It should have read as follows. I had to change this:

    <?php wp_list_pages(‘title_li=<h2>Pages</h2>’); ?>

    To this:

    <?php wp_list_pages(‘sort_column=menu_order’); ?>

  9. Steve Kroon says:

    I installed the plugin, and have an extensive collection of pages on my site, but the “Manage->My Page Order” tab doesn’t display anything except the footer (WordPress logo and “get Firefox” logo).

    Any suggestions?

  10. Örvar says:

    @Chris: <?php wp_list_pages(’sort_column=menu_order&title_li=<h2>Pages</h2>’); ?>

  11. Andrew says:

    Thanks for the reply Orvar, I guess I should mention on this page that I respond to all questions and problems through email since it is much quicker and easier.

  12. Alex Hutton says:

    Andrew,

    I couldn’t find your email address. Sorry to write a support request here.

    I keep getting the following:

    Parse error: syntax error, unexpected ‘=’ on line 6

  13. Alex Hutton says:

    nuts didn’t mean to submit.

    line 6 is the call – “?php wp_list_pages(’sort_column=menu_order&title_li=Pages’); ?”

    (omitting the less than and greater than carrots for formatting in this post)

    Any clues?

  14. Tina says:

    I did go looking for an email address but could not find one, so posting here.

    This plugin doesn’t seem to
    want to work for me. I am running the latest version of wordpress and I also
    have another plugin for pages called Category Order that I’m running
    along with MyPageOrder.

    I tried placing the php code within the sidebar of my theme (Clean Cut
    1.0) where my pages are listed but it keeps giving me this error:

    *Parse error*: syntax error, unexpected ‘=’ in

    I get this error whether or not I have both of MyPageOrder and Category Order
    plugins activated or just MyPageOrder.

    Any ideas on what might be going on?

    Thank you for the help… and thank you so much for developing this
    plugin, it’s exactly what I was looking for, as long as I can get it to
    work :)

  15. For those who use widgets :
    I looked for the,”wp_list_pages” function in widgets.php. widgets.php file is in the “wp-content\plugins\widgets” folder
    Look for the line and change it to :
    wp_list_pages(’sort_column=menu_order’);
    as stated above. It works …
    Thank you for the nice plug-in.

  16. Mike says:

    Try this: ' . __('Pages') . '' ); ?>

  17. Mike says:

    Not sure how to make the code display, here’s another try, this worked for me ‘ . __(‘Pages’) . ” ); ?>

  18. Mike says:

    And another try:
    “?php wp_list_pages(‘sort_column=menu_order&title_li=’ . __(‘Pages’) . ” ); ?”

    Just replace ” with

  19. Morktron says:

    Thanks, it’s a great plugin, it should be integrated into the next version of WordPress. It’s just a common sense way to order pages instead of trying to learn code.

    So thanks :)

  20. Edwin says:

    Do you insert the line into the header.php? Thats where my menu is. But when I edit the code there it gives an error message or it screws up my menu. I’ve tried all the different code from the comments. Anyone?

  21. ablemart says:

    Thanks for a plugin that works and doesn’t require me to program in php to get it working.

  22. gorodon says:

    Great component, but a “heads up”…

    I installed it, made changes to the header however when I opened the component under manage, there were no arrows.

    I then opened it in ie7 (yawn) and got error images for the arrows and was at least able to move stuff up and down.

    I’m not sure what the error could be except perhaps missing arrow images. I’ll check when I get some time.

    Again, thanks for the component. I agree something like this should be standard in WP.

  23. Andrew says:

    Yeah, the arrows not showing up has happened to people before. All the plugin files have to be in plugins/mypageorder, the URLs to the images are sadly hard coded to that location. In my next version I might just ditch the images and use styled buttons, it would eliminate a variable.

  24. Gee Why says:

    Is there a way to disable the “Pages” title that automatically shows up with this plugin? I only want the names of the pages to show up.

    Thanks for any help.

  25. Mark says:

    Man, I love you.

    This saves so much time and headache!
    Brilliant stuff! Thank you thank you thank you!

    As for the arrows, the folder “mypageorder” doesn’t appear to be in the zip – if you rezip it with the folder intact I’m sure less people would get confused.

    Thanks again!

  26. Ayerst Carr says:

    Gee Why, ditto on that. I emailed Andrew and will post his response here when I get it.

  27. Andrew says:

    To not have the header show up use the following in your template:

    wp_list_pages(‘sort_column=menu_order&title_li=’);

  28. Ayerst Carr says:

    Yeah, what he said!

    heheheheheh

  29. Tom says:

    I had trouble with the up and down arrow images not appearing also. It turned out Adblock was blocking them – try exempting your site from adblock or turning it off and refreshing the interface.

    (Not the first time this sort of thing has happened to me!)

    Tom

  30. Great plugin!

    I noticed that if sort_column=menu_order is not the first query string variable that the plugin doesn’t work. No big deal, but just thought people would like to know ;)

  31. Patrick says:

    Worked for me as the second query string parameter. *shrug*

  32. Jamie Peters says:

    Hey, I really REALLY REALLY want this plugin to work, but I can’t get it to!

    I finally got the arrows to show up, but the order still doesn’t change. I’ve tried everything mentioned above, and still nothing. Please tell me what I can do.

  33. matt says:

    I see the plugin page, I see the arrows, I have pages… but there’s no pages populating the multiselects in My Page Order management tab.

    Nothing next to Click to Order Pages and nothing in Order Subpages.

    WP 2.1
    My Page Order for WP 2.1

  34. Pingback: 西瓜田裡的牛

  35. lausse says:

    Thanx for the 2.1 update!

  36. kung says:

    Great plugin, thanks very much.

  37. Ian Johnson says:

    Hi, thanks for the great plugin. One thing — some of us have default php settings such that

  38. Ian Johnson says:

    my last comment is invisible because of special characters. on line 70 the plugin uses the shorter version of the php opening tag, ie. bracket then question park, instead of bracket then question mark then ‘php’. this will cause some servers to report an error.

    thanks again for the great plugin!

  39. Kim says:

    YAY! After much consternation, I finally got this plugin to work. And there was much rejoicing!

    I’m not even a PHP noob — I’m a total PHP nitwit. I don’t know the first thing about PHP, so this whole thing has been trial and error for me.

    For anybody else who’s have problems with this, here’s what I did to get it to work for me. Just like this page mentions, I updated all instances of wp_list_pages to the line mentioned on comment#28 in my widgets.php file and my sidebar.php file (where my menu is). But it still wouldn’t work for me. So I searched all my other files for any mention of wp_list_pages, found it in functions.php, and changed it there as well. Ta-da! Now it works! If that’s mentioned anywhere else on this pages, I totally missed it. :(

    Also, the first time I updated wp_list_pages I got an error message too. But I found that when I copied and pasted the text in from this web page, the quotation mark is what was blowing it up. I had re-type the quotation mark (single quote), and then it worked fine.

    And thank you thank you thank you! I’ve been having fits over getting my pages to display in the order I actually want them in. This is a great plugin!

  40. Dan says:

    I’m using both mypageorder & mycategoryorder with trouble-free installation and operation. I do have a request that would be of great use to me.

    I have a main page, “Locations” and subpages for each state under it. It makes for a very cluttered menu.

    Locations
    —Alabama
    —Arizona
    —etc.

    My question is – could you possibly add a checkbox in the list to make pages hidden?

    Thanks for great plugins.

  41. Nnyan says:

    Hello,

    Great plugins, would you be interested in some customization work? If so please contact me via e-mail.

    Thank you

  42. ralph says:

    all 3 plugins work fine, had some trouble due to the fact that I had not read point 4 of the installation instructions carefully enough. be pricise and persistent when installing. Thanks Andrew these plugins are a great step forward.

  43. tres says:

    (using widgets) every time i try to edit my templates with the wp_list_pages(’sort_column=menu_order&title_li=’); my whole blog dies on me with some sort of parse error.

    what am i doing wrong here?

    @40 – Kim, did you get any errors before you changed your page order list in all 3 files?

  44. Andrew says:

    tres, can you send me the parse error along with the file it is bombing out in, I’ll send you back a version with the correct syntax.

    froman118 at gmail.com

  45. SuperTiti says:

    Help please !

    MyPageOrder does not work with WordPress 2.1.2

  46. Giovanni says:

    Thanks for the plugin…
    I’m from brazil, don’t have a paypal account…

    My country it’s far from modern stuffs like paypal :(

    in US it’s usual commom sense… but here, these things take years for them bring to Brazil.

    Someday I hope to make a donation to you…
    sorry for bad english

  47. SuperTiti says:

    With this fresh new install of WP 2.1.2, MyPageOrder now works clearly !

    Thanks for you help Andrew.
    (This guy is great !)

  48. I’m still not able to get this to work with WP 2.1.2 even when I edit the on line from:
    wp_list_pages(“title_li=”);
    to
    wp_list_pages(’sort_column=menu_order’);

    I just get an error and I have to re-upload the widget plugin to fix it. what do i need to do?

  49. Heuni says:

    If you want to change the code of you page order, you must change code in funtions.php of your theme:

    and in your widget file
    wp_list_pages("sort_column=menu_order&title_li=");

    then it will work with mypageorder. the ” make the difference. it won’t work with only ‘ that.
    Greetings

  50. Heuni says:

    Sorry, my post was not really clear ;)

    If you want to change the code of you page order, you must change code in funtions.php of your theme:

    and in your widget file
    wp_list_pages("sort_column=menu_order&title_li=");

    then it will work with mypageorder. the ” make the difference. it won’t work with only ‘ that.
    Greetings

  51. John P. says:

    I was just sifting through the Codex to figure out how to code this functionality. Came across your plugin and got the results I was looking for in much less time.

    Thank you so much!!

  52. Fallen-Sky says:

    Love it, thanks!!!

  53. Scott says:

    Hmm. It worked… sort of. It reordered the pages in the sidebar brilliantly but those are commented out on my blog because I’m using the page tabs for navigation and your wonderful widget doesn’t reorder those. They remain annoyingly in alpha order. Fabulous work for what it does though.

  54. Nakia says:

    THANK YOU THANK YOU THANK YOU THANK YOU!

  55. Nakia says:

    OK, I have only one issue now.
    I got it set up – It works. I love it…

    But I installed a Javascript file in js folder for a video plugin and then all of a sudden, it’s back to alphabetical.

    Any ideas on why? Anyone?

    Thanks in advance!

  56. David says:

    Brilliant!

    In fact, so brilliant, it should be part of WP.

    Thanks.

  57. Matthias Pospiech says:

    I tried to use your plugin in WP 2.1.3, but I do not see how to save the page order. I can move them around, but they do not get saved.

    Matthias

  58. To get the page order tool working, just use this script in place of the current one (mine is in the header) and it looks at the page order in your admin tool. WordPress should have activated this by default:

  59. jenz says:

    A client of mine wanted the ability to only show “published” pages and not drafts. I added in some extra code and have the details posted: http://www.sandboxdev.com/blog/2007/04/30/my-page-order-wordpress-plugin-modifcation.php

    Would you consider putting this into the next version?

  60. Andrew says:

    Thanks for the suggestion jenz, I will definetely put it in the next version. Drafts don’t show up on the front end so it makes absolutely no sense to show and order them on my plugin page! Duh.

    Also the next versions of my plugins should be pretty nifty, I’m going to implement some drag and drop ordering to make things a little easier, just need to get the interface designed correctly to handle large numbers of links/pages/categories.

  61. Tobey says:

    Thanks a lot, very helpful.

  62. Joe says:

    Does this give the ability to reorder posts as well? And If not, does anyone know of a plugin that does?

  63. Luis says:

    Hello,

    I just wanted to drop a not, this plug in works super great. I love it. But, I find myself de-activating it when is not in use because makes my wordpress install run super slow. Sorry for using the word super so much. Anyway, thanks man! great job.

  64. John P. says:

    Excellent update. Thank you so much!!

  65. Marc says:

    I still can’t get this to work for me.. I’ve replace my “wp_list_pages(‘title_li=’ . __(‘Pages’) . ” );”

    with

    “wp_list_pages(’sort_column=menu_order’);”

    and for some reason my sidebar just shows up blank when I do that. Any suggestions?

  66. Wes says:

    @Marc:
    Hey, I’m not much of a PHP guy myself, but I know enough to hack stuff up. I had the same problem as you did, getting a blank page with the above used code. (I’m also not using Widgets.) Try this:


    ' . __('Pages') . '' ); ?>

    That might work or might not depending on the theme you’re using.

  67. Wes says:

    @Marc:

    Whoops… this instead. (Replace the quotes with carrots)

    “?php wp_list_pages(‘sort_column=menu_order&title_li=’ . __(‘Pages’) . ” ); ?”

  68. Marc says:

    I still seem to have no luck Wes! I placed the new code in, nothing. I deactivated a sidebar widget, nothing.

    My test page is here, maybe it’ll help:

    http://anempireoffilth.com/thepalehorse/

    Theres no content up yet, but the way I want it listed under pages is 2007 first. Help!

  69. Marc says:

    Well, i put in:

    “?php wp_list_pages(‘sort_column=menu_order&title_li=’ . __(‘The Word’) . ” ); ?”

    and it worked!

  70. John P. says:

    Thank you for the email and update to the plug in. Fixed my problem with the visual editor and WP 2.2.

  71. neither says:

    Thanks so much for this. You made have made something which should be simple simple again.

  72. Marc says:

    Another question guys.. on my site under the “Social Photos” and under Edinburgh I have multiple pages listed.. for some reason theres a gap between some of them. Anyone know why? Here’s my page:

    http://anempireoffilth.com/thepalehorse/

    Thanks!

    P.s. (thanks again for the help wes, i’d have contacted you, but you left no address!)

  73. Marc says:

    And I know it’s off topic.. but anyone know how to get a footer to actually show up as a footer? Ha.. Mine just shows up on the right hand side.

  74. SoapboxDave says:

    I hope I didn’t miss the answer to this, but I have it installed and it seems to be working fine…but…

    It puts Page (bad formatting too) at the top of the pages items and I want to remove it, but I can’t find how to do that.

    I put:
    wp_list_pages(‘sort_column=menu_order’ );
    in the Side Bar file. I have no widgets running.

    I’m really under the gun trying to fix all of this. Any help would be great!

    Dave

  75. joserwan says:

    Thank you for these great plugin !

  76. RoneTyne says:

    Great job!!! Very nice. I too wanted to get rid of the “pages’ title as I have my page links across the top of the page as I am using the Andreas04 theme. So I edited the header.php and replaced the code noted above with:

    wp_list_pages(‘sort_column=menu_order&title_li=’ );

    I’ve removed the lessthan?php at the beginning and the ?greaterthan at the end for the line for posting purposes.

  77. Kretzschmar says:

    Thanks. You did a really good job. Is better support for subpages planned?

  78. CM says:

    In WP 2.2.1, what worked for me, in wp-includes/widgets.php:

    wp_list_pages( ‘title_li=&echo=0&sort_column=’ . $sortby . $exclude );

    change to:

    wp_list_pages( ‘title_li=&echo=0&sort_column=menu_order’ );

  79. Markus says:

    Hei!

    I think i found a bug: I use the RoleManger and i has a wp-prosjekt without posts, just pages. If it is disable to write posts (use rolle-manager), i cannot us mypageorder. Can you fix it?

    Thanks for your great work!
    Markus

  80. sapphcoder says:

    Great plugin, thanks!

  81. sarbarth says:

    At last I got what I’m looking for. Many many thanks

  82. Tyler says:

    This is just great — wish it was included in the basic WP installation! (The page order issue is clumsy and confusing in WP, and support — as always — is cryptic at best).

    This is just a great plugin and works wonderfully. Thank you!

  83. Tyler says:

    Uh-oh — even though I installed the latest version (2.2), the My Page Order plugin seems to disable the visual editor in WP.

    I’m using Firefox, the latest version with updates. Any idea how to fix this?

    Right now the workaround is for me to enable the MyPageOrder plugin to reorder the pages and then disable it again.

    Thanks!

  84. Mike says:

    Is the 2.2 supposed to provide a MyPageOrder widget? There is no coding in the 2.2 release for widgets.

    Mike

  85. Andrew says:

    You can use the built in “Pages” widget and set it to sort by “Page Order”. The My Page Order plugin doesn’t really add new ordering methods like my other 2 plugins, it just gives you an interface to batch order the “Page Order” that is on the individual page edit screen.

  86. This sounds what I have been after as I hate having to manually edit the .php files for the menu.

    Cannot understand why this has not been made before..

  87. JD says:

    This is a very useful plugin. Thank you very much. I used it on my Sports blog.

    http://www.sportech.info

  88. Brandon Johnson says:

    Great plugin and a ‘must have’ for any WordPress CMS site. I have been looking for this functionality for awhile. Look for a donation coming your way.

    Cheers,
    Brandon

  89. simon says:

    Absolutely great, i have just one request: my site has lots of pages, all with lots of subpages, so is there any chance the plugin could display the name of the current parent page when i’m ordering sub-pages, so i don’t forget where i am?

    (if the edit/view/delete buttons could also be incorporated, this plugin would for me easily replace the inbuilt ‘manage pages’ screen!)

  90. BitBurn says:

    Thanks a million dude. Donation coming up!

  91. Mark says:

    Excellent pluggin – thanks a bunch. I was trying manually to edit the pages without success. Cheers

  92. Lise says:

    Hi,
    I translated My Page Order into French.
    The French file is here
    http://liseweb.fr/BLOG/?page_id=160

  93. Fred says:

    Gee thanks man. this sure saves time!

  94. Thomas says:

    Hi, I have the same problem as Tyler:
    Uh-oh — even though I installed the latest version (2.2), the My Page Order plugin seems to disable the visual editor in WP.

    I’m using Firefox, the latest version with updates. Any idea how to fix this?

    I am using firefox 2.0.0.7 and WP 2.3RC1

  95. andrew says:

    WP2.2.3 – MyPageOrder2.2
    The installatioin seems to have worked. I am able to activate the plugin and re-order pages in “My Page Order”, however the changes do not reflect on my website. When I go back the “My Page Order” my desired order sticks.

    From the instructions… just make sure the “Page” widget is set to order by “Page order” – I don’t think I understand this. Is there another setting or bi of code somewhere I’m missing?

    Any help greatly appreciated; thanks!

  96. andrew says:

    I should proof my writing before posting. It makes it much easier for the reader to understand; with corrections:

    WP2.2.3 – MyPageOrder2.2
    The installation seems to have worked. I am able to activate the plugin and re-order pages in “My Page Order”, however the changes do not reflect on my website. When I go back to “My Page Order” my desired order sticks.

    From the instructions… just make sure the “Page” widget is set to order by “Page order” – I don’t think I understand this. Is there another setting or bit of code somewhere I’m missing?

    Any help greatly appreciated; thanks!

  97. Andrei says:

    This plugin is a god-send. I’ve manually edited the order on other installations, but this is just so easy.

    Thank you for a great plugin!

  98. Jenny Lens says:

    OMG I have died and gone to heaven (which many Jews don’t even believe in, but call me a believer!). I can’t tell you the HOURS I have spent trying to sort pages. I have HUNDREDS of pages to bring over from my old site. I photographed hundreds of rock shows and they MUST be in order for my fans, and people who license and buy them!!

    So I am setting things up before I begin that arduous process. Why oh why isn’t this built into WP??

    THANK YOU!!!! Why haven’t I found you earlier! I think I need to explore more plug-ins before WordPress codex leaves me exhausted and frustrated! I love WordPress, but I wish their codex would link to more solutions!!

  99. Jenny Lens says:

    I forgot to mention that although my theme (Tiga) was just updated to handle Widgets and 2.3, I could not find your plug-in on the Widgets screen. I found mypageorder under the Manage menu item. I also changed the sidebar.php to post_title, and it works super duper great!

  100. Andrew says:

    Glad you found my plugin so helpful. If you wanted to use Widgets just use the built in Page widget and set it to order by “menu_order” or whatever it is. The ordering is built into WP, but you have to go into each individual page to set it, I just made a prettier interface. I do have two other plugins, My Category Order and My Link Order, that you might find helpful if you run into ordering problems with those.

  101. Mohsin says:

    This is utterly brilliant, thank you. I was getting very frustrated with sorting out my page order manually.

  102. Boulder says:

    Awesome! totally awesome!

    This plugin is great and worked first time for me. Just made the one edit in widgets.php and Muwaa! All better an no more trying to count pages and play with the Page Order setting..

    Great work!

  103. Can you install My Page Order for me? What would it cost?
    I am computer illiterate and do not want to screw-up the site, not to mention I have no idea how to follow your directions.
    Steve

  104. ScorpAL says:

    Hi!

    steve morgenthaler, I can help you.
    If you interested – mail me on scorpal at gmail dot com.

    I have one problem… How I can enable access for manage links or page order for user with Editor role?

    Currently only admin can manage order of links in bloggroll or page order.

    Thanx for all for any help.

  105. RP says:

    I have a situation here, and I seem to be the only one around here (www)…

    When I load mypageorder page, I am able to grab the page I want to reorder, but I can’t drop it anywhere…, unless I double click it. But then I am unable to even grab any other page, unless I reload the page.

    Checking the browser error console, I see a “$(document).ready is not a function” error.

    In the page source, I have jquery normally loaded.

    Anyone has any idea what I am missing?

  106. kami says:

    Great job, it works.
    Thank you very much!

  107. Toby says:

    This message is in response to:
    #99. andrew | September 21st, 2007 at 7:54 pm

    The installation seems to have worked. I am able to activate the plugin and re-order pages in “My Page Order”, however the changes do not reflect on my website. When I go back to “My Page Order” my desired order sticks.

    From the instructions… just make sure the “Page” widget is set to order by “Page order” – I don’t think I understand this. Is there another setting or bit of code somewhere I’m missing?

    You need to go to “Presentation” –> “Widgets”, then click the “Pages” widget and select “Page order” from the drop down menu.

  108. Toby says:

    This message is in response to:

    You need to go to ‘Presentation’ –> ‘Widgets’, then click the ‘Pages’ widget and select ‘Page order’ from the drop down menu.

  109. Anja says:

    For the Dutch users: I’ve translated the version 2.2 plugin in Dutch. You can (if like) download it from http://www.werkgroepen.net/wordpress/?p=455

  110. Aral Balkan says:

    Thank-you for making and sharing this and saving me lots of time.

  111. alan says:

    Thanks!

  112. Low says:

    Thank you for the cool plugin.

  113. Stephan says:

    If I enable “My Page Order”v2.2 the RTE(graphical editor) vanishes. Disabling you plugin brings the editor back.

    Oh yes, my wordpress version is 2.2.3

  114. Stephan says:

    I forgot to mention. RTE vanishes only in Firefox. IE has no problems.

  115. tomb says:

    great stuff, thx, just what I was looking for. Pageordering was still lacking

  116. ben says:

    Nice plugin. Vonsider adding an “omit from page listings” attribute, or maybe a negative order#?

  117. Chris says:

    Hi, this plugin is awesome, however it only works in the Administrator role so I can’t give any other role usage, which sadly makes it useless to me. Does anyone here know how to allow additional roles to access this tool?

    Thank you kindly.

  118. Andrew says:

    You can easily modify which user roles have access to the page. I chose a default of level 2 which includes Author and above. If you want contributors to have access you’ll need to drop that down to level 1. Find this line near the top of mypageorder.php:

    add_submenu_page(“edit.php”, ‘My Page Order’, ‘My Page Order’, 2,”mypageorder”,’mypageorder’);

    And change the 2 to a 1.

  119. thanks baci.
    saol tekrar.

    nice…

  120. Pinto says:

    Thanks man a great plugin,
    i have translate this one into HEBREW.
    here is a link for it:
    http://www.pintophotography.com/wp/?p=101

  121. Great plugin! You saved me so much frustration, thank you!

  122. Markus says:

    Thanx a lot! This plugin just works great for me!

  123. David Tames says:

    Wow, fantastic plug-in, saved me so much time and headache. Thanks for doing it and sharing.

  124. manele noi says:

    That’s great, thanks. I’m setting up a school site using WordPress

  125. gokhan says:

    wery plugins thank

  126. bwb says:

    thanks so much, awesome plugin!

  127. petey says:

    hey i’m new 2 da whole blogging thing n so far i luv it. but i have a question . might seem silly but hey.

    how do i know which version of wordpress i’m using?
    wp 2.2 , 2.3 ?
    how do i know!!!!!!!!!!!?

  128. Kevin says:

    I’ve just started blogging and am still at see. Your plugin will certainly help me keep organized

  129. Pingback: Wordpress plugin recommendations

  130. Pingback: Iconique.net : Au sujet des plugins WordPress utilisés

  131. Pingback: Wordpress Plugins used on Quirksmode | quirksmode

  132. sigh7ings says:

    just what i needed, thanks!

  133. Horia says:

    I have to say this plugin is heavenly. Easy to use and flawless.

    Thank you so much.

  134. Jamie Oliver says:

    Works perfectly, simple yet effective plugin. Thank you! =D

  135. Pingback: Ramp Riders : A Blog For None And All

  136. Pingback: crn-web » Blog Archive » I upgraded to Wordpress 2.5 - what happened!?!

  137. DavidW says:

    Unfortunately, it seems not to be working in 2.5. I deactivated reactivated, uninstalled and re- installed and still no juice. Bummer cause it’s a really useful plugin.

  138. Pingback: Keep your blog ordered with these WordPress Plugins | Blogsessive

  139. Pingback: WordPress Plugins | Waitin' On a Moment - by Tim Gruber

  140. Pingback: WordPress Plugins | Waitin' On a Moment - by Tim Gruber

  141. Josef says:

    Great plugin — good work!!

    However, a small change in the SQL query would be nice:

    Currently it’s not possible to change the order of subpages of a page that is marked ‘private’ in $post->post_status (which DOES make sense for me — I’m linking directly to the subpages; the parent is for structural reasons only).

    Cheers,
    Josef

  142. Pingback: worthdesigning » Blog Archive » Useful Wordpress plugins

  143. Pingback: Using WordPress as a CMS Content Management System | How to Market and Monetize Your Blog

  144. Pingback: The Thinking Stick | Wordpress 2.5, my plugins, and a new look

  145. Pingback: Useful plugins if you want WP as a light-weight CMS - koew.net

  146. Tom says:

    Awesome work! New installers should note the command line (‘exclude= depth=1&sort_column=ID&title_li=’); ?>, as you so clearly stated, but can be easily overlooked! worked great for me, even in my theme!

  147. Pingback: 我所使用的WordPress Plugins | Perfect Blue | MissZ.NET

  148. Alan Kellogg says:

    I am not a technical person. This is what I have in my side bar for listing pages,

    What should I have instead to use your plug in?

  149. Alan Kellogg says:

    Let’s try that again.

  150. Phil says:

    Okay,

    none of this works. My pages still won’t conform to the order. This is very confusing and I think a step by step guide with error checking is in order here. Having to search these threads is ridiculous. In any case, here it goes.

    Below is the code to both the Widgets.php which I have tried to modify according to these loose instructions and sidebar.php has it’s original code.

    My widgets.php has this line.

    if ( $sortby == ‘menu_order’ ) {
    $sortby = ‘menu_order, post_title’;
    }

    $out = wp_list_pages(“sort_column=menu_order&title_li=”);

    if ( !empty( $out ) ) {
    ?>

    AND MY Sidepar.php has these lines

    ?>

    <?php
    }
    }

    So, why won’t this work again? I have the “SORT BY ORDER” in my widgets section.

    Thanks,

    Phil

  151. Pingback: four8.org » WordPress as a CMS and plugins that help

  152. Ray says:

    Pages without subpages are not listet, so they cannot be sorted.

  153. Peter Lurie says:

    Have unfortunately discovered that My Page Order v2.5 breaks the Visual Editor/tinyMCE display in WP 2.3.3.

    Had a couple of hours of hair-tearing, when the Visual editor/TinyMCE didn’t work.

    Tried every solution on the forum, but finally diactivated all Plugins, and discovered that “My Page Order” Plugin (v2.5) was the issue.

    Now disabled, all works correctly. Pity, I liked the interface!

    Peter

  154. Pingback: WordPress, Custom Motorcycles and a lot of Tweaking! | How to Market and Monetize Your Blog

  155. Pingback: Tutoriales - 20 mejores plugins para wordpress:

  156. Pingback: The Best Wordpress Plugins

  157. Pingback: ??? » Blog Archive » ??WordPress????(???)

  158. Pingback: Tutoriales - 20 mejores plugins para wordpress | wordpressfree

  159. Pingback: C-Net Solutions

  160. Pingback: Dernière réalisation | Sushitronic&meili

  161. I needed page order help says:

    Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You – Thank You -

  162. drt says:

    I just want to change the title of the page tabs, since they are too long and one is covered by the search box and can’t be displayed. However, I don’t know which php file contains this tab names, and I could not change them. I’m using Mistylook 3.6. Any suggestion? Thanks.

  163. drt says:

    Thanks for your quick response, Andrew. I made the change per your email and reduced the padding of the navigation tabs and they are now on the same row. However, I was still curious, which php file contain all the title of the navigation tag? I don’t want to change the title of the pages, but just the title of the tab. I could find and tweak the the wording should I know the php filename, but I don’t know enough php syntax to understand what are those function call in the page.php mean? Once again, thanks for your quick response.

  164. Len Dozois says:

    OMG! You are my hero. I have messed with trying to get the page order right on a sidebar widget, several sidebar widgets, and never got the results I wanted. Dropped your widget in and Bam! I am clicking the donate button. Thanks!

  165. Pingback: Mantén tu Blog Ordenado con Algunos Plugins | XeroBlog - Blogging - Consejos y Recursos para Bloggers

  166. Iva says:

    I adore this plugin.

    I was just wondering if you could also prove a way to edit a Page through its interface as well, to replace the Pages’ list in the default interface (as it can’t load on sites with too many Pages)?

    I hope I managed to explain what I meant…

  167. Pingback: ?????wordpress???? | ????

  168. Pingback: 20+ Must-Have WordPress 2.5 Compatible Plugins

  169. Nigel says:

    I installed the plugin and it shows up fine. However when I drag and drop the pages, then press the button “Click to Order Pages.” The button is replaced by the status “Updating page order…” but it never does anything. The status never changes and the update never happens.
    Any ideas. I am in the middle of building multiple WordPress CMS sites, and would love to have this plugin working. I am even willing to make a donation because this plugin goes a long way to making WordPress a truly workable CMS

  170. Pingback: Wordpress Plugins | IBLTechnologies.info

  171. Pingback: 20+ coole Wordpress 2.5 kompatible Plugins | Wuensch-Media.de

  172. Pingback: Hook » Blog Archive » ????-Classics WP-Plugin for Novice![??]

  173. Pingback: wordpress?????? | ????

  174. Pingback: Must-Have WordPress 2.5 Compatible Plugins : AskPerson

  175. Pingback: WordPress??My Page Order?????Page?????? | ?????blog

  176. Pingback: dips.aluscio.us | 20+ Must-Have WordPress 2.5 Compatible Plugins

  177. Pingback: YIN-YIN LE BLOGMASTER || PageMash

  178. Pingback: sillybean » Essential WordPress plugins

  179. Anja says:

    Hi,
    Great plugins! (Mylinkorder, mypageorder and my category order. But… we once have tested for the translation for te plugin mylinkorder, and i am still waiting for the translations of the other plugins. I will test it agian with you, if it is necessary.

    with regards,

    Anja from werkgroepen.net/wordpress

  180. Philix says:

    This is a great plug in :)

  181. I am trying to manage my pages so that they act like posts, I guess. I am definitely a newbie so here goes, appologies in advance…

    Please visit my site and look at the, “Articles” paging. I would like to have them archive each month and even each year. The reason that I seperate each article on to a different page is to allow a different comment thread to accompany the related article.

    If, in the sidebar, It showed only the current month’s articles and the headings for the prior months, it would be great. Like this…

    Aug 08
    first title
    second title
    etc…
    Jul 08
    Jun 08
    May 08
    Apr 08
    Mar 08
    Feb 08
    Jan 08
    2007
    2006
    Am I nuts? or is something like this possible?

    If everything except the current month’s stuff was in a seperate archive header that would be cool too.

    I don’t speak php or css and have been known to be challenged in English! Any input would be appreciated.

  182. Jason says:

    @fundamental Charlie. Why wouldn’t you use posts instead of pages. They are designed to be archived exactly as you would like.

    That way you also have full RSS and fully automatic archiving in standard mode.

    In the sidebar you need to show the archives widget and probably latest posts. Somehow you have the whole WordPress concept exactly backwards.

    Also having comments on posts is standard practice whereas most people wouldn’t like their pages to be full of comments.

    You don’t really need the extra “pages” widget to be displayed at all.

  183. Ash says:

    Ok. Great plugin. Thank you for your hard work.

    My problem is this: I’m displaying *only* the subpages for each parent and the My Page Order is not working.

    Is this possible?

    Services

  184. Ash says:

    Here’s the code one more time:

    Services

  185. Ash says:

    I’m only output the sub-pages and trying to order them:

    wp_list_pages(‘child_of=68&title_li=&sort_column=post_title’ )

  186. Lourens says:

    Hi!

    Do you have an idea when the 2.6 version will be available?

    I’ve been looking too long for a great plugin like this one :)

  187. Pingback: Build Affiliate Sites Fast | Affpreneur

  188. Pingback: WordPress CMS - Video Guide

  189. slee says:

    hi great plugin but will you be releasing a fix for wp 2.6?

  190. Pingback: Must have wordpress plugins - Martijn Beijk

  191. Michelle says:

    what does this mean???
    Fatal error: Call to undefined function wp_enqueue_script() in /mnt/w0900/d27/s19/b02e868d/www/honeykain.com/wp-content/plugins/my-page-order/mypageorder.php on line 22

    it comes on a white page every time I try to implement the my page order

  192. Pingback: So can you use WordPress as a CMS? | TMRW™

  193. Pingback: Extra Things That You Can Do With a Self-Hosted WordPress Blog (that you can’t do with a Free WordPress blog) | blog.classroomteacher.ca

  194. Pingback: Top 20 Essential Wordpress Plugins | paulboakye.net

  195. Pingback: Setting up the WordPress Static Homepage – PrimePress Theme for WordPress

  196. nils says:

    thanks! it’s a GREAT plugin! :)

  197. Tim Squires says:

    I have installed and activated the plugin and can move the pages with the drag and drop interface, but it has no effect on the page order as it appears on the blog. Everything looks fine on the interface, but on the blog nothing has changed. Would be most grateful for some help as this plugin seems great if I could get it to work. (I haven’t included my blog url as it is still not ready to go public)

  198. Flector says:

    Russian language files (.po and .mo) you can download here.

  199. Pingback: 8 WordPress Plugins for Page Management - Mashable

  200. Pingback: Mashable » Blog Archive » 8 plugins de WordPress para que administres tus páginas

  201. Pingback: 8 WordPress Plugins for Page Management  »TechAddress

  202. Pingback: 8 WordPress Plugins for Page Management | TooCube

  203. Pingback: 8?WordPress??????[Plugin] | Web2.0 News

  204. ed says:

    very useful plugin. thanks

  205. Pingback: 3 WordPress Once Off Plugin | I'm Knight

  206. Pingback: 8 WordPress Plugins for Page Management – spithout.Net

  207. Pingback: 8???????? WordPress ??

  208. Mohammad Samini says:

    I am translate po file of your plug-in to my language (Persian). How can I send to you?

    Regards,
    Mohammad Samini

  209. Aysseline says:

    Hi, thanks for your great plugin. I don’t see more release history for this plugin on your site. I want to know what is new between 2.5.1 and 2.6.1 and if I really need to upgrade. Thanks for your answer.
    Aysseline

  210. Pingback: My Page Order, un plugin admin pour gérer l’ordre des pages - Dany’s world

  211. Pingback: dForge dot net » Blog Archive » Need more pages (tabs)

  212. Mike Vincent says:

    It wont work with 2.6 Is there going to be an update??

  213. Pingback: 8???????? WordPress ?? | BlueFox Qzone

  214. Pingback: Links for 14th October 2008 | Velcro City Tourist Board

  215. Pingback: WordPress ????????????? | ?????????WordPress ?????

  216. Aaron says:

    Is there any way this can be implemented to sort pages in order of the last update? The page that was updated last will be on top?

  217. Pingback: Nowog.com » 8?WordPress??????

  218. Pingback: HellBoy » Blog Archive » 10 Wordpress Plugins

  219. Pingback: Mikkel Juhl - Lær om blogging - Blogging|Skriv|Trafik|Tjen Penge Online » Top 10 WordPress Plugin

  220. S. says:

    Thanks this is a great plugin!

  221. When you say PAGE order …. does it only work on pages or does it work on POSTS also?

  222. Pingback: 30 WordPress Plugins to Spice Up Your Blog - Maverick Web Creations

  223. Pingback: 8 WordPress Plugins for Page Management « LocalLab : Foire aux Infos

  224. Pingback: 20+ Must-Have WordPress 2.5 Compatible Plugins « LocalLab : Foire aux Infos

  225. Pingback: WordPress plugins that I use « Falcon1986-Online

  226. Hi. Just what I needed.
    BTW you haven’t provided and email address to contact you for translations. I have the Persian (Farsi) translation ready.
    Would be great if you included a language string for the submenu name in your next release so it too can be translated.

  227. mark says:

    Sweet ‘n simple. Might want to check the positioning in the WP 2.7 (Beta) admin – it shows up under ‘Posts’ instead of under ‘Pages’. (Glad it shows up at all though!)

  228. Pingback: 8?WordPress Page?????? - ???

  229. Pingback: 8?WordPress Page?????? | ???

  230. Brad says:

    Your page order one works great!

    Wondering if you have a plugin (or suggestion) for limiting the number of posts on the main page. I tried one called random posts, but it didn’t work.

    I want to limit the number of posts on the home page, shouldn’t be too tough, but having trouble with it.

    Also, do you know of a way of hiking selected posts so they won’t show on the home page but display elsewhere, such as in side bars.

    Thanks

  231. Pingback: WordPress?????? | ??????

  232. Pingback: ?????? | SpringThunder

  233. Pingback: Top Ten Worpress Plugins that you must get ! | - BloggWpress -

  234. Does this work with posts too or just pages?

  235. nuriwan says:

    Your page order one works great!

    thanks for share

    nuriwan

  236. Pingback: WordPress plugin | Web ??????!

  237. leferolliot says:

    I installed WP 1.5 & 2.0: mypageorder.zip and it does not work.
    The column selection is empty
    Thank you for helping me

  238. baron says:

    hi. Thanks for plugin

    perfect.

    Regards

  239. Pingback: Wordpress Upgraded To 2.7 Coltrane | The CaymanHost Web Hosting Directory

  240. Pingback: Top 10 and most popular wordpress plugins | Ontore Bangladesh

  241. Pingback: Why I Love These 15 Wordpress Plugins — AriWriter

  242. Pingback: WordPress Plugins Used On The Michel Fortin Blog | The Michel Fortin Blog

  243. Pingback: 20+ Must-Have WordPress 2.5 Compatible Plugins « Có Là Share

  244. Pingback: Plugin Review: My Page Order - Will Anderson

  245. Pingback: Top 10 and most popular wordpress plugins | OntoreBangladesh

  246. Pingback: En.nicuilie.eu Blogs » Top 1000 WordPress Plugin Authors

  247. Pingback: cssframework » 8???????? WordPress ??

  248. Pingback: WordPress « blog.marc-it-up.com

  249. Barb says:

    Hi,

    I would LOVE to use this plugin, but I get the following errors when trying to install (I’m using WP 2.7 and my theme is “Elegant Grunge”):

    On the Manage Plugins page, the following appears:

    Plugin activated.

    Warning: main(/homepages/35/d114473329/htdocs/sab/blog/wp-content/plugins/my-page-order/) [function.main]: failed to open stream: Success in /homepages/35/d114473329/htdocs/sab/blog/wp-settings.php on line 465

    Warning: main() [function.include]: Failed opening ‘/homepages/35/d114473329/htdocs/sab/blog/wp-content/plugins/my-page-order/’ for inclusion (include_path=’.:/usr/lib/php’) in /homepages/35/d114473329/htdocs/sab/blog/wp-settings.php on line 465
    —–

    Then when I try to logout of WP, I get almost two pages of this error (with varying line numbers referenced):

    Warning: Cannot modify header information – headers already sent by (output started at
    /homepages/35/d114473329/htdocs/sab/blog/wp-settings.php:465) in
    /homepages/35/d114473329/htdocs/sab/blog/wp-login.php on line 255

    Does anyone know why these errors might be happening and how to fix them?

    Thanks!
    Barb

  250. Pingback: WordPress Plugins Used On The Michel Fortin Blog

  251. Pingback: The Power of WordPress and jQuery: 30+ Useful Plugins & Tutorials

  252. Pingback: ??????? WordPress, ???????????? ?? ????? ?????? ??????? | ????? ? ????????? ??? ???????? ???????

  253. Karl Gehrke says:

    I have instaled { MY PAGE ORDER }in the plug in folder
    but it will not show up in the manage plugin dashboard
    so i cannot activate it as it is not there to activate can you help..

  254. Pingback: The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials | Web2.0

  255. Thanks a lot for sharing this plugin.i love it’s functionality.

    have a good day

  256. ktblock says:

    Just only got started on WordPress and already putting up my second site. Don’t really get why the default page order function is so wonky. Love this plugin. Simple and works great! Thanks!

  257. eric says:

    love the plugin. just wanted to let you know that it’s throwing a jQuery sorting error in the newest version of wordpress (2.7-2.8). i’m going to see if i can figure it out, but it’s no longer allowing me to sort the pages.

    Error: jQuery(“#order”).sortable is not a function
    Source File: http://xxx/wp-admin/edit-pages.php?page=mypageorder
    Line: 139

  258. Pingback: Free WordPress and jQuery: 25+ Useful Plugins & Tutorials | guidesigner.com

  259. Pingback: Linking Your Pages using Html | %catogary_title%|Internet Marketing

  260. Mike says:

    Hi -

    Just found this, and I’m trying to use it with 2.7.1. So…from where do I use the plug-in? I can’t find it in my dashboard. Thanks…

  261. Pingback: Typical WordPress Plugin Menu for a CMS site | Hank is me.

  262. Pingback: ?? » Blog Archive » WordPress??My Page Order?????Page??????

  263. Pingback: Enhance Your Wordpress Blog with 23 Plugins — AriWriter

  264. Pingback: Guía de recursos y tips para profesionales de Wordpress - elWebmaster.com

  265. Pingback: Test-Blog » Wichtige Wordpress-Plugins

  266. Joanne says:

    Hi
    What a great plugin – saved me loads of time – so simple yet so great!
    Joanne

  267. dannydamnboy says:

    Hello, I’ve translated this great plugin in italian. If you would like to add this translation, please send me an email!

  268. So can we have a “My Post Order” soon? Pretty please? :)

  269. phani says:

    Hello Sir,

    this question might frustrate you. But I am more into trouble.

    I have tried all the tips and tricks of this plugin. I am able to see the my page order in the Pages menu in the dashboard. When i Go into the my page order, I can see order subpages, order pages. And am also able to see the 4-sided-arrow-mouse that moves the pages up and down. then I click order pages.
    Then …. nothing happens. Please guide me. Thank YOU.

  270. Pingback: ?????? Wordpress Plugins | ???

  271. Pingback: Wichtige Wordpress-Plugins | Von Und Zu

  272. Pingback: Free WordPress and jQuery: 25+ Useful Plugins & Tutorials | designersmantra.com

  273. Jenny says:

    I just installed your plugin and it wouldn’t work, so I tried putting some of the code into the sidebar.php. When I did that the entire sidebar disappeared. I used:
    and

    Doo you know what I can do?

    Thanks,
    Jenny

  274. Joakim says:

    By changing line 14: from “add_submenu_page(mypageorder_getTarget(), ‘My Page Order’, ‘My Page Order’, 5,”mypageorder”,’mypageorder’);”

    to
    “add_submenu_page(mypageorder_getTarget(), ‘My Page Order’, __(‘My Page Order’, ‘mypageorder’), 5,”mypageorder”,’mypageorder’);”

    The menu button also gets translated instead of always saying “My Page Order”.

  275. this plugin is really cool!

  276. spicer says:

    Hello,

    An advanced apologies if this has been covered already but…
    is this plugin compatible with MU?

    Thanks in advance.

  277. Pingback: Twitter Tweets about WordPress Plugin as of April 13, 2009 | The Lessnau Lounge

  278. Joe says:

    get_results(‘select ID, post_title from ‘. $wpdb->posts .’ where post_status = “publish” and post_type = “page” order by ID’);

    }
    return $these_pages;
    }

    function list_all_pages(){

    $all_pages = get_the_pa_ges ();
    foreach ($all_pages as $thats_all){
    $the_page_id = $thats_all->ID;

    if (is_page($the_page_id)) {
    $addclass = ‘ class=”current_page”‘;
    } else {
    $addclass = ”;
    }
    $output .= ‘ID).’” title=”‘.$thats_all->post_title.’”>’.$thats_all->post_title.’‘;
    }

    return $output;
    }
    ?>

    <?php

    if (is_home()) {
    $addclass = ‘ class=”current_page”‘;
    } else {
    $addclass = ”;
    }
    echo “Home“;
    echo list_all_pages();?>

    These were all the references I could find in ANY of my theme files to pages.

    I’m using the StudioPress_Red theme.

    Can somebody please offer some advice…I’m s**t out of luck :-(

    Thanks :-)

  279. Capt. Ray says:

    I have installed and activated in the Atahualpa Theme. Shows up in the Plugins as active, but no way to access it because will not show up in “Tools.” Atahualpa does not have “manage” referenced in your installation instructions. Works with Atahualpa? Thanks so much. Ray

  280. Pingback: WordPress?????20? | L-Log

  281. Pingback: WordPress: 12 Plugins imperdibles para tu blog « Computer Related and IT Colaborative Knowledge Backup Site

  282. Roman says:

    Hi! can u help me? how I can insert a separator (like “/”) between links of pages? I can’t find the way ((

  283. Pingback: TREND BLOG » 20 ???????????? ???????? ??? WordPress 2.5

  284. WOW! That is good! Here’s a beer!

  285. This plugin is just GREAT. Thank you!

  286. Pingback: Change order of Wordpress Pages in Menu

  287. Pingback: makomi » Blog | Wordpress-Plugins «

  288. Pingback: WebTechGlobal Blog» WTG’s Top 20 Word Press Plugins

  289. Pingback: Hvordan koble (linke) en side til en kategori i Wordpress | Bloggen som tvitrer om reise og sosiale medier

  290. Thanks so much for this plugin! I use WP as a CMS with a blog, not so much the other way around, so being able to set page order (and then retrieve/display with my own methods) has saved me loads of time.

  291. Pingback: Linking Your Pages using Html

  292. Karsten says:

    Hello,

    I have one (surely) simple question:
    we put your programm into our WP. I now want to put the “Kontakt” above Survival-Abenteuer (see: http://www.gauditours.de/adventure-sport/) on left navigation-bar. So I put the latest article “Survival-Abenteuer” below “Kontakt” in MPO, but it does not work.
    Do you have a hint?

    AND: I do not have a dropdown to choose subpages, I only have a FULL list of all articles ever written. So I cant see, which article belongs to which top-navigation point.

    I would be glad if you might help me.
    Regards from sunny Germany,

    Karsten

  293. Pingback: ??????? WordPress v2.7.1 Lecactus edition | wake2(cren) - ????

  294. jottlieb says:

    This Plugins does’nt seem to work with WordPress 2.8 because of JavaScript problems.

  295. Pingback: ?My page order?Wordpress??????????

  296. The javascript errors with WP 2.8(beta) can be fixed by wrapping the initial jQuery-call in the standard “ready”-function:

    jQuery(document).ready(function(){
    jQuery(“#order”).sortable({
    placeholder: “ui-selected”,
    revert: false,
    tolerance: “pointer”
    });
    });

    (The first and last lines in the above have been added.)

  297. I have made some small changes to version 2.7.1, per the list below. The new version can be downloaded from http://www.wasab.dk/morten/2009/06/my-page-order.2.7.1mf.zip

    * Danish translation added.
    * Made menu button translatable per comment #188 from Joakim (http://blog.deviouswork.com/).
    * Changed subpage button text to “Click to Order Subpages” to improve UI consistency and make separate translation of header and button possible.
    * Fixed JavaScript-problem (Error: jQuery(”#order”).sortable is not a function) with WordPress 2.8-beta2.

  298. Pingback: VicLovan.com » Plugins info

  299. Pingback: Standard List of WordPress Plugins

  300. I have two sites using this plugin as its so useful!
    I have just upgraded to 2.8 and the plugin no longer displays in the sidebar.
    is there a known issue?

    What does all this lot mean???

    The javascript errors with WP 2.8(beta) can be fixed by wrapping the initial jQuery-call in the standard “ready”-function:

    jQuery(document).ready(function(){
    jQuery(”#order”).sortable({
    placeholder: “ui-selected”,
    revert: false,
    tolerance: “pointer”
    });
    });

    (The first and last lines in the above have been added.)

    Can anyone explain how I do that? Which file I edit etc?

  301. Fat Cower says:

    Hello!

    I’m to translate your plugin in belorussian language. when You publish this? My email – *****@gmail.com. Please answer me!

  302. Pingback: Wordpress plugins to make your business thrive! | Serendipity Web Solutions

  303. kym says:

    running latest version with 2.7.1 under IE8. The AJAX function works on the top level caegories but when I tried to sort a subcategory the AJAX is not working. I cannot select a page to move.

  304. Pingback: A-Blog

  305. Pingback: Andrew Reff // Indianapolis Web Design and Developer

  306. Pingback: WordCast 45: Is that WordPress on your wrist? | WordCast

  307. Pingback: ??IT???????? - WordPress ??Plugin ?? 16 – My Page Order

  308. FINALLY – some order out of the chaos!

    Cheers Andrew!

  309. Pingback: A Web Developer’s Bookmarks « Hired Guns Creative

  310. Pingback: A Web Developer’s Bookmarks « Hired Guns Creative

  311. asdf says:

    Doesn’t work. Can’t drag & drop pages. Thanks anyway.

  312. asdf says:

    Working now. Had to use 2.7.1 version.

  313. Pingback: 8 Plugins diferente para seu Wordpress! | Mestre Web

  314. yboogie says:

    Having problem with 2.7.1 MU. Cannot move the Pages using drag and drop on all my blogs…

  315. Ore says:

    Great plugin!. The 2.8 version doesn’t work. Can’t drag & drop pages.
    I’ve tried in IE8 and IE7.
    Thanks for all!

  316. Pingback: 10 under rated wordpress plugins | Irish Internet Entrepreneur - Smemon

  317. Pingback: ????? ?????? – My Page Order » ????? ???

  318. Pingback: The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials | Quest For News, A TUTORIAL Base

  319. Pingback: WordPress as a CMS and plugins that help « WPatch.com

  320. amo says:

    thank you, very much.
    this plugin is very good.

  321. Ore says:

    Great plugin!.

    I think The latest version doesn’t work.

    I can’t move boxes with the mouse. I have IE8.

    Thanks for all!

  322. Pingback: The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials | 4dump.com

  323. Pingback: 60+ Must Have Wordpress Plugins - Technolik Blog

  324. Pingback: 09.7.8?? | ???

  325. Pingback: 8 WordPress Plugins for Page Management | Download E-Books Free Video Training Courses Softwares

  326. Pingback: SisuCare – Financial Pet Aid During Tough Times « Holywebmaker’s Blog

  327. David says:

    Great plugin, i can order, but he doesn’t show it correct in the page. In admin it’s in the right order, but not in the site.
    I use wordpress 2.8.1 and the latest version of your plugin.
    Any help?
    regards
    David

  328. Pingback: WordPress: Ordenação de páginas muito mais fácil com My Page Order – PauloSchilling.net

  329. Pingback: 15 Plugins to Unleash the Invincible Power of jQuery and Wordpress

  330. Pingback: Mas allá del orden alfabético « the radioliN

  331. Pingback: 8???????? WordPress ?? | Wordpress Tea House

  332. Pingback: PixoPoint Menu plugin

  333. robotronik says:

    I am using WP version 2.7.1. Tried using plugin version 2.8 and 2.7.1 and neither of them worked for me.

    I am unable to move the boxes in either page or subpage category. The one I click appears in a box at the bottom, none of the boxes actually move and clicking “Click to Order Pages” does nothing.

    Looks like a cool plugin though. I’d love to see it fixed. Thanks!

  334. Pingback: 7 ?????? ?????? ??????? ????????

  335. Pingback: Outta Bounds – One BIG WordPress Site: A Case Study

  336. hrstuks says:

    Hi, I’m adding some more functionality to your nice little plugin, like attached image preview, which is helpful if you have a large amount of pages. I’d like to send you a copy, but couldn’t find your e-mail address anywhere. Write me, if you’re interested.

    I’m not having any luck display the current hierachy number of each page,
    I think that would be nice. Any help would be nice.

    Take care!

  337. Pingback: MEH? ???????? / Web?????? / SEO?? / ??????? ????????????

  338. Pingback: jQuery Wordpress Plugins Strikes Again | WPThemesPlugin.com

  339. Pingback: WordPress Sayfa Yönetim Eklentileri | Karadefter.net

  340. Pingback: Wordpress Eklenti ?ndeksi | Karadefter.net

  341. Pingback: Disha Hosting » jQuery Wordpress Plugins Strikes Again

  342. Pingback: 10 Perfect Plugins for Building a WordPress CMS | kevinleary.net

  343. Pingback: Wordpress Plugin – My Page Order | Geeky Weekly | WpMash - WordPress News

  344. Pingback: 13 Plugins para soltar o poder do jQuery no Wordpress « Xigli

  345. Pingback: Wordpress’te Sayfa S?ralamas?n? Ayarlamak | Sosyoblog

  346. Pingback: 11 Absolutely Essential WordPress Plugins | Syaoran's Journal

  347. Pingback: Créditos

  348. Pingback: Kevin » My Page Order

  349. Pingback: What WP Plugins Should I install? | Social Bootstrap

  350. Pingback: 8?WordPress?????? | ????

  351. Pingback: MU Wordpress & Wordpress Themes - 20+ Must-Have WordPress 2.5 Compatible Plugins

  352. ronan downes says:

    Hi, can this plugin also be used to place pages in suborders or will it only order pages in a given level?

    Now I still need to go to WP edit to create sublevels.

    Ronan

  353. Pingback: BlogInstall | Recommended plugins I use

  354. Ujjwol says:

    How to open the plugin after activating i am from where ???

    Go to the “My Page Order” tab under Manage and specify your desired order for pages

    Where is Manage in Dashboard ????

  355. Ujjwol says:

    Ya thanks I got it

  356. Pingback: 23 Must-Have WordPress Plugins | The Common Hoster

  357. Pingback: Wordpress Plugin – My Page Order | Geeky Weekly

  358. Pingback: 23 Must-Have WordPress Plugins | The Common Hoster – CelebrityTwitterGossip.com

  359. Pingback: Top 100 Wordpress Plugins => CezZy.pl

  360. Pingback: 35 Stylish And Modern Wordpress Plugins Using jQuery UI | Graphic and Web Design Blog - Inspiration, Resources and Tools

  361. Pingback: Wordpress Plugin – My Page Order | Geeky Weekly | Squico

  362. Pingback: 35 elegantes y modernos Plugins para Wordpress usando jQuery UI | Don Pipa.com, web oficial

  363. Pingback: 8 Great Wordpress Plugins for Page Management - Just Social!

  364. Pingback: 30+ Useful Wordpress Plugins « Er.Krushna Chandra Muni :: Professional Web Developer,Website Design Orissa,Website Design Bhubaneswar,Indian Freelancer,website design india

  365. Pingback: 32 essenziali plugin wordpress | Voci dal web

  366. Pingback: My Page Order – Allows You Arrange The Order of Your Static Pages « WP WordPress

  367. Pingback: WordPress?????20? | L-Studio

  368. Pingback: My Page Order???????????WordPress????? | Google????????????????????????

  369. Pingback: 8 Page Management for WordPress Plugins | oOrch Blog

  370. Pingback: tmtbox media | 35 Stylish And Modern Wordpress Plugins Using jQuery UI

  371. Pingback: 35 Stylish And Modern Wordpress Plugins Using jQuery UI | pc-aras

  372. Pingback: A Wordpress Theme Without Plugins Is Like A Tree Without Blossoms And Fruits

  373. Melissa says:

    I really really have been looking for a plugin like this. My subpages weren’t in alphabetical order and I am a beginner in code – thanks for this!

  374. Pingback: 8 WordPress Plugins for Page Management

  375. Pingback: ????? ????? » ?????? ?????? ??????? ????????

  376. Pingback: WordPress Tips - Top 6 Page Management Plugins |

  377. Will says:

    I modified your for() loop so that the for loop starts off at -99 instead of 0. This means that new pages with a default of 0 for their menu_order show up at the bottom of the list instead of the top. Kind of nice. Maybe you could add an option to the page which allows users to pick the first value in the for loop. Thanks for a nice plugin. -Will

  378. Michelle says:

    My main-nav.php template is the only place where I found reference to pages.
    But I cannot find the sort parameter you are talking about – can you please take a look at this code and let me know if there is something else I should modify? I commented out the first part as that was causing me to have 2 HOME’s listed in the top nav. thanks!


    <!–COMMENTED THIS OUT TO REMOVE THE EXTRA HOME IN THE TOP NAV<li>
    <a href="” title=”">–>
    get_results(“SELECT post_name, post_title, ID FROM $wpdb->posts WHERE post_type=’page’”);
    $getTitle=trim(wp_title(‘ ‘, false));
    $check=0;
    foreach($pages as $page){ ?>
    post_title);
    if($getTitle==$getPageTitle)
    {$check=1;}
    else
    {$check=0;}
    ?>

    <a href=”ID); ?>”>post_title; ?>
    <span class="mpost_title; ?>”>

  379. Pingback: My Top 10 WordPress Plug-ins | Create My - eCommerce and Web Design Hornsby - eCommerces and Web Design Sydney

  380. Pingback: 40+ Quite Useful Wordpress Plugins using jQuery | tripwire magazine

  381. Pingback: MichelFortin.com’s Active Plugins | BootStrapNow

  382. Pingback: Jim = Adding / Tweaks … Last Edited: 6.51am – 10th. « Bradford City Angling Association

  383. Pingback: Tutoriales – 20 mejores plugins para wordpress | Aprende fácil y rápido con Vlad

  384. Pingback: Wordpress Plugins for Content Management : McQ Web Solutions

  385. wptidbits says:

    Doesn’t this will effect the website indexes in google? Anyway, if its not, this is a very useful plugin to have. Great for wordpress user!

  386. Pingback: ??????? » ????wordpress page order???

  387. John Mann says:

    Hello,

    I got your plugin to download and install just fine.

    There are some pages I wish to exclude but for the life of me I can’t figure out where to find the Page ID to type into the exclude box.

    My permalinks are custom so I cannot use that method. Is the Page ID shown on the page somewhere?

    Thank you

    John Mann

  388. Pingback: gamma agency » Blog Archive » Liste des Plugins (extensions)

  389. Pingback: wordpress??????My Page Order - Hi Rain

  390. kyle says:

    I love you people that put this code u gotta chnage this and that…not once did one person say were this code you need to chnage is NOT ONCE in one of these comments…THIS PLUGIN DOES NOT WORK FOR ME

  391. kyle says:

    Some could u please help me …

  392. Pingback: Patrickone Dotnet » Blog Archive » Free WordPress downloads