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.
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
Pingback: 西瓜田裡的牛
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
Pingback: Wordpress plugin recommendations
Pingback: Iconique.net : Au sujet des plugins WordPress utilisés
Pingback: Wordpress Plugins used on Quirksmode | quirksmode
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
Pingback: Ramp Riders : A Blog For None And All
Pingback: crn-web » Blog Archive » I upgraded to Wordpress 2.5 - what happened!?!
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.
Pingback: Keep your blog ordered with these WordPress Plugins | Blogsessive
Pingback: WordPress Plugins | Waitin' On a Moment - by Tim Gruber
Pingback: WordPress Plugins | Waitin' On a Moment - by Tim Gruber
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
Pingback: worthdesigning » Blog Archive » Useful Wordpress plugins
Pingback: Using WordPress as a CMS Content Management System | How to Market and Monetize Your Blog
Pingback: The Thinking Stick | Wordpress 2.5, my plugins, and a new look
Pingback: Useful plugins if you want WP as a light-weight CMS - koew.net
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!
Pingback: 我所使用的WordPress Plugins | Perfect Blue | MissZ.NET
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, 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
Pingback: four8.org » WordPress as a CMS and plugins that help
Pages without subpages are not listet, so they cannot be sorted.
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
Pingback: WordPress, Custom Motorcycles and a lot of Tweaking! | How to Market and Monetize Your Blog
Pingback: Tutoriales - 20 mejores plugins para wordpress:
Pingback: The Best Wordpress Plugins
Pingback: ??? » Blog Archive » ??WordPress????(???)
Pingback: Tutoriales - 20 mejores plugins para wordpress | wordpressfree
Pingback: C-Net Solutions
Pingback: Dernière réalisation | Sushitronic&meili
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 -
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.
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.
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!
Pingback: Mantén tu Blog Ordenado con Algunos Plugins | XeroBlog - Blogging - Consejos y Recursos para Bloggers
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…
Pingback: ?????wordpress???? | ????
Pingback: 20+ Must-Have WordPress 2.5 Compatible Plugins
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
Pingback: Wordpress Plugins | IBLTechnologies.info
Pingback: 20+ coole Wordpress 2.5 kompatible Plugins | Wuensch-Media.de
Pingback: Hook » Blog Archive » ????-Classics WP-Plugin for Novice![??]
Pingback: wordpress?????? | ????
Pingback: Must-Have WordPress 2.5 Compatible Plugins : AskPerson
Pingback: WordPress??My Page Order?????Page?????? | ?????blog
Pingback: dips.aluscio.us | 20+ Must-Have WordPress 2.5 Compatible Plugins
Pingback: YIN-YIN LE BLOGMASTER || PageMash
Pingback: sillybean » Essential WordPress plugins
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
This is a great plug in :)
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.
@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.
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
Here’s the code one more time:
ServicesI’m only output the sub-pages and trying to order them:
wp_list_pages(‘child_of=68&title_li=&sort_column=post_title’ )
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 :)
Pingback: Build Affiliate Sites Fast | Affpreneur
Pingback: WordPress CMS - Video Guide
hi great plugin but will you be releasing a fix for wp 2.6?
Pingback: Must have wordpress plugins - Martijn Beijk
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
Pingback: So can you use WordPress as a CMS? | TMRW™
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
Pingback: Top 20 Essential Wordpress Plugins | paulboakye.net
Pingback: Setting up the WordPress Static Homepage – PrimePress Theme for WordPress
thanks! it’s a GREAT plugin! :)
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)
Russian language files (.po and .mo) you can download here.
Pingback: 8 WordPress Plugins for Page Management - Mashable
Pingback: Mashable » Blog Archive » 8 plugins de WordPress para que administres tus páginas
Pingback: 8 WordPress Plugins for Page Management »TechAddress
Pingback: 8 WordPress Plugins for Page Management | TooCube
Pingback: 8?WordPress??????[Plugin] | Web2.0 News
very useful plugin. thanks
Pingback: 3 WordPress Once Off Plugin | I'm Knight
Pingback: 8 WordPress Plugins for Page Management – spithout.Net
Pingback: 8???????? WordPress ??
I am translate po file of your plug-in to my language (Persian). How can I send to you?
Regards,
Mohammad Samini
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
Pingback: My Page Order, un plugin admin pour gérer l’ordre des pages - Dany’s world
Pingback: dForge dot net » Blog Archive » Need more pages (tabs)
It wont work with 2.6 Is there going to be an update??
Pingback: 8???????? WordPress ?? | BlueFox Qzone
Pingback: Links for 14th October 2008 | Velcro City Tourist Board
Pingback: WordPress ????????????? | ?????????WordPress ?????
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?
Pingback: Nowog.com » 8?WordPress??????
Pingback: HellBoy » Blog Archive » 10 Wordpress Plugins
Pingback: Mikkel Juhl - Lær om blogging - Blogging|Skriv|Trafik|Tjen Penge Online » Top 10 WordPress Plugin
Thanks this is a great plugin!
When you say PAGE order …. does it only work on pages or does it work on POSTS also?
Pingback: 30 WordPress Plugins to Spice Up Your Blog - Maverick Web Creations
Pingback: 8 WordPress Plugins for Page Management « LocalLab : Foire aux Infos
Pingback: 20+ Must-Have WordPress 2.5 Compatible Plugins « LocalLab : Foire aux Infos
Pingback: WordPress plugins that I use « Falcon1986-Online
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.
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!)
Pingback: 8?WordPress Page?????? - ???
Pingback: 8?WordPress Page?????? | ???
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
Pingback: WordPress?????? | ??????
Pingback: ?????? | SpringThunder
Pingback: Top Ten Worpress Plugins that you must get ! | - BloggWpress -
Does this work with posts too or just pages?
Your page order one works great!
thanks for share
nuriwan
Pingback: WordPress plugin | Web ??????!
I installed WP 1.5 & 2.0: mypageorder.zip and it does not work.
The column selection is empty
Thank you for helping me
hi. Thanks for plugin
perfect.
Regards
Pingback: Wordpress Upgraded To 2.7 Coltrane | The CaymanHost Web Hosting Directory
Pingback: Top 10 and most popular wordpress plugins | Ontore Bangladesh
Pingback: Why I Love These 15 Wordpress Plugins — AriWriter
Pingback: WordPress Plugins Used On The Michel Fortin Blog | The Michel Fortin Blog
Pingback: 20+ Must-Have WordPress 2.5 Compatible Plugins « Có Là Share
Pingback: Plugin Review: My Page Order - Will Anderson
Pingback: Top 10 and most popular wordpress plugins | OntoreBangladesh
Pingback: En.nicuilie.eu Blogs » Top 1000 WordPress Plugin Authors
Pingback: cssframework » 8???????? WordPress ??
Pingback: WordPress « blog.marc-it-up.com
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
Pingback: WordPress Plugins Used On The Michel Fortin Blog
Pingback: The Power of WordPress and jQuery: 30+ Useful Plugins & Tutorials
Pingback: ??????? WordPress, ???????????? ?? ????? ?????? ??????? | ????? ? ????????? ??? ???????? ???????
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..
Pingback: The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials | Web2.0
Thanks a lot for sharing this plugin.i love it’s functionality.
have a good day
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!
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
Pingback: Free WordPress and jQuery: 25+ Useful Plugins & Tutorials | guidesigner.com
Pingback: Linking Your Pages using Html | %catogary_title%|Internet Marketing
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…
Pingback: Typical WordPress Plugin Menu for a CMS site | Hank is me.
Pingback: ?? » Blog Archive » WordPress??My Page Order?????Page??????
Pingback: Enhance Your Wordpress Blog with 23 Plugins — AriWriter
Pingback: Guía de recursos y tips para profesionales de Wordpress - elWebmaster.com
Pingback: Test-Blog » Wichtige Wordpress-Plugins
Hi
What a great plugin – saved me loads of time – so simple yet so great!
Joanne
Hello, I’ve translated this great plugin in italian. If you would like to add this translation, please send me an email!
So can we have a “My Post Order” soon? Pretty please? :)
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.
Pingback: ?????? Wordpress Plugins | ???
Pingback: Wichtige Wordpress-Plugins | Von Und Zu
Pingback: Free WordPress and jQuery: 25+ Useful Plugins & Tutorials | designersmantra.com
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
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”.
this plugin is really cool!
Hello,
An advanced apologies if this has been covered already but…
is this plugin compatible with MU?
Thanks in advance.
Pingback: Twitter Tweets about WordPress Plugin as of April 13, 2009 | The Lessnau Lounge
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 :-)
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
Pingback: WordPress?????20? | L-Log
Pingback: WordPress: 12 Plugins imperdibles para tu blog « Computer Related and IT Colaborative Knowledge Backup Site
Hi! can u help me? how I can insert a separator (like “/”) between links of pages? I can’t find the way ((
Pingback: TREND BLOG » 20 ???????????? ???????? ??? WordPress 2.5
WOW! That is good! Here’s a beer!
This plugin is just GREAT. Thank you!
Pingback: Change order of Wordpress Pages in Menu
Pingback: makomi » Blog | Wordpress-Plugins «
Pingback: WebTechGlobal Blog» WTG’s Top 20 Word Press Plugins
Pingback: Hvordan koble (linke) en side til en kategori i Wordpress | Bloggen som tvitrer om reise og sosiale medier
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.
Pingback: Linking Your Pages using Html
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
Pingback: ??????? WordPress v2.7.1 Lecactus edition | wake2(cren) - ????
This Plugins does’nt seem to work with WordPress 2.8 because of JavaScript problems.
Pingback: ?My page order?Wordpress??????????
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.)
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.
Pingback: VicLovan.com » Plugins info
Pingback: Standard List of WordPress Plugins
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?
Hello!
I’m to translate your plugin in belorussian language. when You publish this? My email – *****@gmail.com. Please answer me!
Pingback: Wordpress plugins to make your business thrive! | Serendipity Web Solutions
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.
Pingback: A-Blog
Pingback: Andrew Reff // Indianapolis Web Design and Developer
Pingback: WordCast 45: Is that WordPress on your wrist? | WordCast
Pingback: ??IT???????? - WordPress ??Plugin ?? 16 – My Page Order
FINALLY – some order out of the chaos!
Cheers Andrew!
Pingback: A Web Developer’s Bookmarks « Hired Guns Creative
Pingback: A Web Developer’s Bookmarks « Hired Guns Creative
Doesn’t work. Can’t drag & drop pages. Thanks anyway.
Working now. Had to use 2.7.1 version.
Pingback: 8 Plugins diferente para seu Wordpress! | Mestre Web
Having problem with 2.7.1 MU. Cannot move the Pages using drag and drop on all my blogs…
Great plugin!. The 2.8 version doesn’t work. Can’t drag & drop pages.
I’ve tried in IE8 and IE7.
Thanks for all!
Pingback: 10 under rated wordpress plugins | Irish Internet Entrepreneur - Smemon
Pingback: ????? ?????? – My Page Order » ????? ???
Pingback: The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials | Quest For News, A TUTORIAL Base
Pingback: WordPress as a CMS and plugins that help « WPatch.com
thank you, very much.
this plugin is very good.
Great plugin!.
I think The latest version doesn’t work.
I can’t move boxes with the mouse. I have IE8.
Thanks for all!
Pingback: The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials | 4dump.com
Pingback: 60+ Must Have Wordpress Plugins - Technolik Blog
Pingback: 09.7.8?? | ???
Pingback: 8 WordPress Plugins for Page Management | Download E-Books Free Video Training Courses Softwares
Pingback: SisuCare – Financial Pet Aid During Tough Times « Holywebmaker’s Blog
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
Pingback: WordPress: Ordenação de páginas muito mais fácil com My Page Order – PauloSchilling.net
Pingback: 15 Plugins to Unleash the Invincible Power of jQuery and Wordpress
Pingback: Mas allá del orden alfabético « the radioliN
Pingback: 8???????? WordPress ?? | Wordpress Tea House
Pingback: PixoPoint Menu plugin
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!
Pingback: 7 ?????? ?????? ??????? ????????
Pingback: Outta Bounds – One BIG WordPress Site: A Case Study
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!
Pingback: MEH? ???????? / Web?????? / SEO?? / ??????? ????????????
Pingback: jQuery Wordpress Plugins Strikes Again | WPThemesPlugin.com
Pingback: WordPress Sayfa Yönetim Eklentileri | Karadefter.net
Pingback: Wordpress Eklenti ?ndeksi | Karadefter.net
Pingback: Disha Hosting » jQuery Wordpress Plugins Strikes Again
Pingback: 10 Perfect Plugins for Building a WordPress CMS | kevinleary.net
Pingback: Wordpress Plugin – My Page Order | Geeky Weekly | WpMash - WordPress News
Pingback: 13 Plugins para soltar o poder do jQuery no Wordpress « Xigli
Pingback: Wordpress’te Sayfa S?ralamas?n? Ayarlamak | Sosyoblog
Pingback: 11 Absolutely Essential WordPress Plugins | Syaoran's Journal
Pingback: Créditos
Pingback: Kevin » My Page Order
Pingback: What WP Plugins Should I install? | Social Bootstrap
Pingback: 8?WordPress?????? | ????
Pingback: MU Wordpress & Wordpress Themes - 20+ Must-Have WordPress 2.5 Compatible Plugins
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
Pingback: BlogInstall | Recommended plugins I use
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 ????
Ya thanks I got it
Pingback: 23 Must-Have WordPress Plugins | The Common Hoster
Pingback: Wordpress Plugin – My Page Order | Geeky Weekly
Pingback: 23 Must-Have WordPress Plugins | The Common Hoster – CelebrityTwitterGossip.com
Pingback: Top 100 Wordpress Plugins => CezZy.pl
Pingback: 35 Stylish And Modern Wordpress Plugins Using jQuery UI | Graphic and Web Design Blog - Inspiration, Resources and Tools
Pingback: Wordpress Plugin – My Page Order | Geeky Weekly | Squico
Pingback: 35 elegantes y modernos Plugins para Wordpress usando jQuery UI | Don Pipa.com, web oficial
Pingback: 8 Great Wordpress Plugins for Page Management - Just Social!
Pingback: 30+ Useful Wordpress Plugins « Er.Krushna Chandra Muni :: Professional Web Developer,Website Design Orissa,Website Design Bhubaneswar,Indian Freelancer,website design india
Pingback: 32 essenziali plugin wordpress | Voci dal web
Pingback: My Page Order – Allows You Arrange The Order of Your Static Pages « WP WordPress
Pingback: WordPress?????20? | L-Studio
Pingback: My Page Order???????????WordPress????? | Google????????????????????????
Pingback: 8 Page Management for WordPress Plugins | oOrch Blog
Pingback: tmtbox media | 35 Stylish And Modern Wordpress Plugins Using jQuery UI
Pingback: 35 Stylish And Modern Wordpress Plugins Using jQuery UI | pc-aras
Pingback: A Wordpress Theme Without Plugins Is Like A Tree Without Blossoms And Fruits
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!
Pingback: 8 WordPress Plugins for Page Management
Pingback: ????? ????? » ?????? ?????? ??????? ????????
Pingback: WordPress Tips - Top 6 Page Management Plugins |
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
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; ?>”>
Pingback: My Top 10 WordPress Plug-ins | Create My - eCommerce and Web Design Hornsby - eCommerces and Web Design Sydney
Pingback: 40+ Quite Useful Wordpress Plugins using jQuery | tripwire magazine
Pingback: MichelFortin.com’s Active Plugins | BootStrapNow
Pingback: Jim = Adding / Tweaks … Last Edited: 6.51am – 10th. « Bradford City Angling Association
Pingback: Tutoriales – 20 mejores plugins para wordpress | Aprende fácil y rápido con Vlad
Pingback: Wordpress Plugins for Content Management : McQ Web Solutions
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!
Pingback: ??????? » ????wordpress page order???
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
Pingback: gamma agency » Blog Archive » Liste des Plugins (extensions)
Pingback: wordpress??????My Page Order - Hi Rain
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
Some could u please help me …
someone*
Pingback: Patrickone Dotnet » Blog Archive » Free WordPress downloads