Wordpress Plugin – My Page Order
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.
Download My Page Order:
- WP 2.5: Now hosted at the Wordpress.org Plugin Directory
- WP 2.2 and 2.3: mypageorder-2-2.zip
- WP 2.1: mypageorder2-1-3.zip
- WP 1.5 & 2.0: mypageorder.zip
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:
- Move mypageorder.php to /wp-content/plugins/
- Activate the My Page Order plugin on the Plugins menu
- Go to the "My Page Order" tab under Manage and specify your desired order for pages
- If you are using widgets then just make sure the "Page" widget is set to order by "Page order". That's it.
- 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.
Great stuff, thx!
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?
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.
Cool! Thanks
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.
I don’t think this works in conjunction with Widgets, my page order won’t change.
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.
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?
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’); ?>
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?
@Chris: <?php wp_list_pages(’sort_column=menu_order&title_li=<h2>Pages</h2>’); ?>
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.
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“
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?
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 :)
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.
Try this:
' . __('Pages') . '' ); ?>Not sure how to make the code display, here’s another try, this worked for me ‘ . __(’Pages’) . ” ); ?>
And another try:
“?php wp_list_pages(’sort_column=menu_order&title_li=’ . __(’Pages’) . ” ); ?”
Just replace ” with
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 :)
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?
Thanks for a plugin that works and doesn’t require me to program in php to get it working.
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.
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.
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.
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!
Gee Why, ditto on that. I emailed Andrew and will post his response here when I get it.
To not have the header show up use the following in your template:
wp_list_pages(’sort_column=menu_order&title_li=’);
Yeah, what he said!
heheheheheh
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
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 ;)
Worked for me as the second query string parameter. *shrug*
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.
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
Thanx for the 2.1 update!
Great plugin, thanks very much.
Hi, thanks for the great plugin. One thing — some of us have default php settings such that
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!
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!
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.
Hello,
Great plugins, would you be interested in some customization work? If so please contact me via e-mail.
Thank you
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.
(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?
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
Help please !
MyPageOrder does not work with WordPress 2.1.2
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
With this fresh new install of WP 2.1.2, MyPageOrder now works clearly !
Thanks for you help Andrew.
(This guy is great !)
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?
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
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
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!!
Love it, thanks!!!
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.
THANK YOU THANK YOU THANK YOU THANK YOU!
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!
Brilliant!
In fact, so brilliant, it should be part of WP.
Thanks.
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
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:
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?
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.
Thanks a lot, very helpful.
Does this give the ability to reorder posts as well? And If not, does anyone know of a plugin that does?
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.
Excellent update. Thank you so much!!
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?
@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.
@Marc:
Whoops… this instead. (Replace the quotes with carrots)
“?php wp_list_pages(’sort_column=menu_order&title_li=’ . __(’Pages’) . ” ); ?”
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!
Well, i put in:
“?php wp_list_pages(’sort_column=menu_order&title_li=’ . __(’The Word’) . ” ); ?”
and it worked!
Thank you for the email and update to the plug in. Fixed my problem with the visual editor and WP 2.2.
Thanks so much for this. You made have made something which should be simple simple again.
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!)
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.
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
Thank you for these great plugin !
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.
Thanks. You did a really good job. Is better support for subpages planned?
Thank you!
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’ );
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
Great plugin, thanks!
At last I got what I’m looking for. Many many thanks
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!
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!
Is the 2.2 supposed to provide a MyPageOrder widget? There is no coding in the 2.2 release for widgets.
Mike
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.
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..
This is a very useful plugin. Thank you very much. I used it on my Sports blog.
http://www.sportech.info
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
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!)
Thanks a million dude. Donation coming up!
Excellent pluggin – thanks a bunch. I was trying manually to edit the pages without success. Cheers
Hi,
I translated My Page Order into French.
The French file is here
http://liseweb.fr/BLOG/?page_id=160
Gee thanks man. this sure saves time!
Thanks a lot!
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
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!
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!
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!
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!!
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!
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.
This is utterly brilliant, thank you. I was getting very frustrated with sorting out my page order manually.
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!
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
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.
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?
Great job, it works.
Thank you very much!
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.
This message is in response to:
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
Thank-you for making and sharing this and saving me lots of time.
Thanks!
Thank you for the cool plugin.
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
I forgot to mention. RTE vanishes only in Firefox. IE has no problems.
great stuff, thx, just what I was looking for. Pageordering was still lacking
Nice plugin. Vonsider adding an “omit from page listings” attribute, or maybe a negative order#?
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.
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.
thanks baci.
saol tekrar.
nice…
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
Great plugin! You saved me so much frustration, thank you!
Thanx a lot! This plugin just works great for me!
You are the Man!
Wow, fantastic plug-in, saved me so much time and headache. Thanks for doing it and sharing.
That’s great, thanks. I’m setting up a school site using Wordpress
wery plugins thank
thanks so much, awesome plugin!
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!!!!!!!!!!!?
I’ve just started blogging and am still at see. Your plugin will certainly help me keep organized
lk
just what i needed, thanks!
I have to say this plugin is heavenly. Easy to use and flawless.
Thank you so much.
Works perfectly, simple yet effective plugin. Thank you! =D
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.
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
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!
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?
Let’s try that again.
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,