Last week I was having a really hard time ordering the categories in this blog’s header as WordPress only seems to allow to order by name or by ID. That’s why I came up with the Category Order plugin.
Description
The Category Order plugin allows you to easily reorder your categories the way you want via drag and drop. It doesn’t require a special widget or anything, just install and reorder.
Requirements
This plugin requires that you use at least WordPress 2.3, although it has only been tested on WordPress 2.5.1
Download
Installation
- Download the plugin and expand it.
- Copy the ‘category-order.php’ file into your plugins folder (wp-content/plugins/).
- Login into the WordPress administration area and go to the Plugins page.
- Locate the Category Order plugin and click on the activate link
- That’s it, now you can go to Manage » Category Order and reorder the categories the way you want. *In WordPress 3.1, go to your Dashboard and drop down the Posts menu in the left-hand sidebar. Somewhere on that list will be Category Order. Click that, then drag and drop your categories. You must click the Order Categories button to save your changes before you leave the page (even if you’re just clicking More » to move to a page of subcategories).
- If you use wp_list_categories(), make sure you don’t specify an order (e.g. wp_list_categories(‘orderby=count’);).
Version History
- 1.0.3 – If no order is specified, categories are ordered by name
- 1.0.2 – Fixed a problem related to PHP 4
- 1.0.1 – Fixed a problem where the plugin wouldn’t work properly if you had installed WordPress in a subdirectory
- 1.0 – Initial Release
Donate
Support further plugin development by making a small donation:
I really need “Category Order “,it help me to solve a terrible problem.thank you!
Yes!
This is one of the most simplest and most useful plugin that I ever came across.
I’ve been waiting for this plugin for the longest time. Bloggers using language who do not care for alphabetical order would be down on their knees with appreciation.
Thank you!
If you like, I would be happy to translate this into Japanese. Just shoot me an email.
Cheers
Ooops.
I just found out that although you can reorder the sub-categories it can not cope with the sub-sub-categories.
Is there a work around this?
Thanks
@yoichi: Are you sure? Because I have tried with sub-categories, sub-sub-categories and even sub-sub-sub-categories… and it seems to work just fine.
Yeap. It just flips back to what it was before when I click the ‘order cateogries’ button. Strange … I tried both browsers FF and IE6 just in case.
Will the style sheet have any affect on this? Because I have the categories placed in the horizontal sub-navigation dropdown menu with IE6 and IE7 hacks.
Trying your plugin on WP2.5.1, i notice two things.
1. When clicking a more >> link (to order subcategories) the plugin assumes I have WP installed in root and does not recognize the subdir I have WP in. When manually repairing the URL, I see that the << back link has the same problem.
2. The plugin does not reorder my categories 🙁 … Am I missing something? I am not using widgets but the old wp_list_cats function in my sidebar. Is that the problem?
Thanks for any help. Your plugin seems to be just perfect for my needs and the ajax back-end is just wonderfully easy so I hope that this can be figured out 🙂
–ravan
Correction: I figured out why the categories were not reordered. I had the option ‘orderby=’ set in the wp_list_cats function. Removing it solved that issue. (you might want to put that in the installation description?)
Manually editing the subdir URL for changing any subcategory order is not a big deal so I have to report my contentment with your plugin. Thanks! 🙂
@RavanH: Thanks for pointing that out… I’ll make the necessary changes asap.
@RavanH: I have just updated the plugin to fix the problem related to WP being installed in a subdirectory. Thanks again for letting me know about this.
[…] Category Order- The Category Order plugin allows you to easily reorder your categories the way you want via drag […]
[…] o văd nativ în WP este reordonarea cu mouse-ul a categoriilor. Până atunci problema o rezolvă Category Order, pur şi simplu trăgând categoriile cu mouse-ul pentru a crea ordinea […]
I find the NAVT plugin extremely useful for organizing my navigation menus.
[…] artırmak ve içeriğe göre sunumu değiştirmek adına Kategorileri sıraya koyabilen Category Order. Özellikle Google aramalarında daha ön planda olmak ve içeriği ulaştırabilmek için Google […]
Great plugin! It works fine, except that my subcategories are appearing as li elements with the main categories. Any suggestions? I have my categories tag as
wp_list_cats(‘sort_column=name&hide_empty=0’
@jon: First, you should switch to wp_list_categories instead, since wp_list_cats has been deprecated.
Then, if you don’t want to list subcategories, I think you have to set the depth parameter to 1. Like: wp_list_categories(“depth=1”);
Thanks for the quick response! I switched to wp_list_categories. The problem is i want my subcats to show, but as new li items under the main category. WP was showing them like this before i installed the plugin. My current tag is wp_list_categories(‘sort_column=name&hide_empty=1&hierarchical=1&title_li= any ideas?
@jon: So you want the subcategories to show but to be indented, is that what you’re asking? That might be related to your CSS. Probably this line: “ul ul {padding:0;}”
Hi, i just installed the orde category plugin and its great, but now the person i am building the site for want the sub categories on alha order, when i uninstalled/deactivated the plugin the order data was retained, how can i clear the data? and what is the default order when the plugin is active? seems to be post order, can i change this?
sorry for the typos…
…the order category …
…for wants the sub categories on alpha order…
p.s.: great plugin and thanks
@James: By default, without the plugin, the categories are ordered alphabetically. Right now the plugin doesn’t allow to order just the top level, unless you don’t touch the sub-categories order at all, in that case, I suppose the plugin should order the top level but not the sub-levels. I guess this would be a nice feature for future releases. Meanwhile, you can try removing the “wpguy_category_order” row from the wp_options table, re-enable the plugin and order just the top level categories.
thanks, i have already done that but the sub items are still ordering by ID/post order, and i can’t seem to make it do anything else
in the plug in
line 112
$allthecategories = get_categories(“hide_empty=0”);
124
$categories = get_categories(“hide_empty=0&child_of=$childrenOf”);
adding &orderby=name to either or both does nothing, that i can see
i also considered line 143
$categories[$n]->order = 99999;
replacing the 99999 with an ascii/hex conversion of the name string but i am new to php and have no idea how to do it, or if it would even work
the reason i am looking to do this is if i manually order the sub categories any time the user adds another sub category then i will need to reorder them, but the sub categories are all a year followed by a description
1931 some text
1967 some other text
1955 more text
when they are posted in that sequence they show up in that sequence whereas if they sequence automaticaly on the name they would be 1931 1955 1967, which would make more sense, and i would not need to manully resequence
i understand that this is case specific and do not excpect you to rewrite the plugin for one exception, just lookig for some guidance oin how i can alter the code to do what i need
Thanks again
ps – awesome follow-up, fast response time
Wessley, i don’t think it’s a CSS thing. The code is listing both the main and sub cats all as li under the main ul, instead of a li under the parent li. very strange behaior, i don’t know if it’s something in my WP installation that is causing it. I’ll troubleshoot it a bit more then get out of your hair. Thanks
Categories
Events
Artwork
Mardi Gras
General
Andrea Mistretta
sorry, tried to post the code but it didnt come thru. Andrea Mistretta is set up as a subbcat of artwork, but it gets put at the bottom of the main cat listing. thanks for looking.
@Jon: Try with wp_list_categories(“hierarchical=1”)
@James: Ok… It seems that, somehow, the categories get ordered by ID if you don’t specify an order… I have just updated the plugin to fix this, hopefully your problem will get solved with the update.
Wessley…
thanks very much for this change, works perfectly!
This new version has fixed the problem I was having with the sub-sub-categories.
Thanks!
When I try to save the category order I get logged out of the WP admin panel. The new category order is saved but I have login again. I use the latest version of this plugin and WP.
@yoichi: I’m really glad it’s working for you now 😉
@Iliyan Darganov: That’s weird… I can’t think of anything that would cause this. Maybe it has something to do with some other plugin, I don’t know.
[…] 2. Category Order […]
@Wessley Roche – maybe the problem is somewhere else. Is it possible to make this plugin compatible with qTranslate? Now it shows the language tags.
[…] Category Order: A simple yet highly useful plugin. It allows you to manually re-arrange you categories’ order. […]
[…] Category Order […]
HI! Great plugin!!
I’ve managed to install it and it’s working well with my sidebar category list.
The problem is the listed posts aren’t sorted the same way. Is it possible to do?
I cannot wait to use this plugin, I been needing a plugin to reorder my categories for way too long.
Can anyone verify that this plugin works with wordpress v2.6?
TIA
David
@David: I just upgraded to 2.6, everything seems to be working just fine.
What a sweet plugin you ROCK man, i been looking for this kind of plugin for weeks.
Thanks for that great plugin! Just installed it and it works fine as long as I use the wp_list_categories tag die list my categories.
But I also have the “Fold Category List” plugin running which uses the wswwpx_fold_category_list to list categories. So after replacing the original tag with the one for this plugin “Category Order” has no effect any more… any idea?
hi, your plugin works pretty well.
now i’m trying to activate the categories count. but the numbers are displayed in the wrong formatting. can you tell me where i can find the attributes for this item?
Thanks for a great plugin! It’s really useful on my new site as I plan on using categories a lot. But I noticed one thing, when building the front page I have to access the term_id directly and for some reason when I add new categories it fetches a different category id then the one WP recognises otherwise. I don’t know how to get around it. Check out http://www.fhoto.se/nytest (top left category, sorry, haven’t figured out how to fetch the category titles yet) and you’ll see it get’s the order wrong compared to the in-site menu and also gets the cat-ID wrong because the link doesn’t work. Any clues? Thanks!
I’d LOVE to use this plugin with WordPress MU and it does activate just fine. While I see the order looks good in the back end, the front end does not change the order of the categories. 🙁 It still shows them as they are entered in the back end.
What do you know… your advice about the “order” commands in header.php were the problem. Works like a charm. 🙂
Thanks
Awesome plugin.
[…] http://wpguy.com/plugins/category-order/ […]
It works with 2.6.1 too.
Great plugin, very useful!
[…] Category Order 又一个分类排序插件,在后台通过拖放即可实现分类的重新排序。 […]
[…] Category Order, a drag-and-drop way to organize the order categories appear in, allowing me to set the order of the sections in the menu bar. […]
[…] from here 23) Category Order- The Category Order plugin allows you to easily reorder your categories the way you want via drag […]
[…] Category Order, a drag-and-drop way to organize the order categories appear in, allowing me to set the order of the sections in the menu bar. […]
I am using this and for some how the plugin has no effect on the order. I am missing something? thanks for any help.
function sandbox_globalnav() {
$menu = wp_list_categories(‘title_li=&sort_column=menu_order&echo=0&depth=1’);
$menu = ” . $menu . ”;
$menu = ” . $menu . “n”;
echo apply_filters( ‘globalnav_menu’, $menu ); // Filter to override default globalnav: globalnav_menu
}
Wicked!!!! Awesome stuff…you’ve made my day. Great job!
Steve
[…] Category Order 1.0.3作者: Wessley Roche. カテゴリ順番を自由に調整。AJAXで軽快動作。作者サイトには、WordPress2.5.1の環境を書いたが、こちらは2.6.2でも無事動作している。同様に、「My Category Order」もあり、試していない。 […]
holy cow, that was easy. i was completely shocked that category order isn’t an option in WP yet, like page order is. but i figured there was a plugin somewhere for it 🙂 thanks!
Now why can’t all plugins be as well coded as this one?
Simple, easy .. great drag-n-drop interface for newbies
Thankyou!
[…] Category Order — Offre une interface pour ordonner les catégories et les sous-catégories par glissé-déposé dans l’ordre que vous désirez. […]
It’s a good plugin, thanks!
[…] 另外:还有一个插件Category Order,其要实现的功能完全一样,本人没有试过,据说比较使用更加方便,感兴趣的朋友可以去看看。 […]
This is GREAT! Thank you!!! Exactly what I’ve been looking for!
Your plugin is perfect for post categories, but I am having a terrible time finding something like it for link categories. Really, I’d love it to be JUST like this! Do you know of anything (preferably NOT a widget), or is there a way to modify this for link categories?
Thanks!
Awesome plugin! Just what I was looking for!! Thanks!
worked great!!
tnx 🙂
Hi, this plugin is really good. Works smooth and nice; however, how can I show the ordered categories if i use mysql statements?
this is what I’m actually using:
”
get_results(“SELECT $wpdb->terms.term_id AS id, name, description from $wpdb->terms INNER JOIN $wpdb->term_taxonomy ON $wpdb->terms.term_id = $wpdb->term_taxonomy.term_id WHERE parent = ‘$cat’ “);
foreach($categories as $category) :
?>
…blabla
”
Should I put some “OrderBY”; don’t think so, but…
Sorry, I’m really new to all of this.
Another point, there is a column at the term_relationships table called “term_order” which (at this point in my WPsite) happens to be all 0’s. Can’t it be used to reoder the categories? I have no clue…
Thanks for your time and for your great job.
Fantastic! Couldn’t be more simple. Exactly what I was looking. The only thing is the “Save” button that says “Order Categories” took me a few times to realize it was the save button. But very very minor criticism. Does this change the ID numbers? So if we rig up code that relies on ID numbers staying the same, should we be wary of changing things? I guess I’m not privy enough to WP functions
Hi,
Is there a way to make this plugin work for blogroll categories? Or do you know of another plugin for that?
Thank you.
Lisa
[…] Category Order 又一个分类排序插件,在后台通过拖放即可实现分类的重新排序。 […]
Brilliant!
Quick and easy – should be in WP as standard.
Thanks!
I can’t C it in WP 2.7 how and from where can I use it in 2.7??
[…] Sista WordPress-tipset för dagen gäller den ordning som kategorierna visas i när man använder wp_list_categories. Det finns möjlghet att sortera efter namn eller ID, men vill man ordna efter eget tyckte rekommenderar jag tillägget Category Order. […]
thanks for work, I was searching for such a plugin for a long time
Absolutely perfect. Many thanks bro!
@Hisham – It is located within the posts index on your left navigation bar when you are in your admin.
@Simon – I totally agree, it should be standard!
Nickel ! Merci beucoup pour cette fonctionnalité, simple, efficace et vraiment pratique ! Very good job guy !
Happy new Year 2 U ! 🙂
It’s time to update now to work with 2.7, man! Your plugin causes error.
super plugin…thank you.
How do I make the child categories NOT appear in the the category list?
Thank you, WordPress Guy. That was just what I needed.
i am using wp 2.7 and its not working! i am chaning the order from the admin panel but its not being reflected to the front end!
Please help
thanks
firas
I have used the Category Order plugin, but it seems the plugin get conflict with ozh-admin-drop-down-menu plugin. Any suggestion?
I am using your “My category order” plugin on WP 2.7 and I can move the categories around, store the order- and still the categories show up in A-Z order on my homepage. Why?
[…] Category Order 分类排序插件 […]
just a quick suggestion to improve your great plugin. if there is only 1 sub category, there is nothing to order, so remove the More> link.
Hrrmm, I can’t believed he stops supporting this great masterpiece. 🙁
wonderful plugin, just what I needed!
[…] Category Order 又一个分类排序插件,在后台通过拖放即可实现分类的重新排序。 […]
[…] Category Order 又一个分类排序插件,在后台通过拖放即可实现分类的重新排序。 […]
[…] Player All in One SEO Pack AStickyPostOrderER Audio player Auto-hyperlink URLs Category Order Google Analytics for WordPress Insights pageMash Podcasting WordPress Database Backup […]
[…] Category Order […]
[…] Category Order | WordPress Guy (tags: wordpress plugins) […]
[…] Category Order […]
[…] 下列以字母序: Akismet:貌似是防止垃圾评论,WordPress程序自带,但是需要一个API Key,去WordPress.com注册一个帐号就能在后台得到; All in One SEO Pack:叫做SEO插件,其实我不知道是干啥的,貌似是对WordPress整体的优化,能改善对Google的体验,嗯……由于太出名,我一开始就装了,所以没有比较过没有这个插件的情形……貌似有中文版,我装的是官网的英文版…… Anonymous WordPress Plugin Updates:WordPress插件能自动升级,貌似会发送个人信息,这个就是屏蔽插件升级时发送个人信息的; Category Order:改变日志分类的顺序(默认是按首字母排序),试了几个,这个最好用…… Disable autosave:禁用自动保存,和下面No Revisions差不多; NextGEN Gallery:很牛的图片/相册插件,slideshow的话需要JW Image Rotator插件,后台会提供链接; No Revisions:WordPress 2.6新出了保存文章版本(其实就是修改的时候存个备份),会严重弄乱文章的id,搞乱数据库,此插件就是关闭这个功能; Post-Plugin Library:WP-MulticolLinks或者WP-RecentComments插件所需要使用的库,具体哪个我忘了 WordPress Database Backup:著名的数据库备份插件,生成.sql文件; WordPress Related Posts:每篇文章后面根据tag显示相关文章; WP-MulticolLinks:首页显示友情链接,需要修改主题的sidebar; WP-RecentComments:首页显示最新评论,mg12的插件,mg12的主题内置代码,不知道其他主题是否需要修改sidebar; […]
Can you please undate this plugin so that it is compatible with WP 2.7.1?
I am running this version and this plug doesn’t work with it.
Thank you.
Worked fine for me in WordPress 2.7.1
[…] πρέπει να χρησιμοποιήσουμε ένα πολύ από plugin. Είναι το Category Order που μας επιτρέπει με πολύ εύχρηστο τρόπο, να αλλάξουμε […]
thanks….working wid wordpress 2.7.1 like a charm….
thanks a million
impressive work ! thank you very much.
[…] カテゴリの並べ替えがドラッグ、ドロップでできるという便利なプラグインなのですが・・・異なるサーバーのThemesを変更したら、やっぱり働かなくなりました・・・! どうもロールオーバー等には反応しないようです。 なので、同じ機能だけど少々使い勝手の違う“Category-order” に変更してみました。このサイト(「WPビギナーの苦悩」もこれに変更したら使用できたので) […]
Also works fine with my WordPress 2.7.1. This plugin has saved me A LOT of time. Thanks!
OWO… i wish i could you donate..i don`t have any paypal account. however many many thanks !
Excellent! You have just saved my whole design.
Thank you very much!
[…] Category Order allows you to easily reorder your categories the way you want via drag and drop. It doesn’t require a special widget or anything, just install and reorder. details and download […]
BIG THANK YOU for Category Order.
It works on wp 2.7.1 also
Has anyone tested it with 2.8?
Works on 2.8 for me.
[…] It allows you to easily reorder your categories the way you want via drag and drop. It doesn’t require a special widget or anything, just install and reorder. details and download […]
Just installed it on a WordPress 2.8.1 site and it works.
I spoke too soon. Just like My Category Order plugin the plugin works if viewed using Safari on Mac or Windows but doesn’t always work:
Mac Safari – yes
Mac Firefox- yes
Mac Flock – no
Windows Safari – yes
Windows IE8 – no
Windows Firefox – no
Thanks for a great plugin and all the work that goes into creating and maintaining it! Much appreciated.
Hi all,
I’m testing this plugin.
It looks OK for me, but I’m on mac so I have to check on windows.
I just want to ask a question :
does it change the ID in the table “terms” in database please ?
Thx
manu
It doesn’t alter anything in the database.
I’m having trouble figuring out how to actually get to Manage this (or any) plug-in in WP 2.8.2…all I see is “deactivate” or “edit” can anyone point me in the right direction to a more WYSIWYG UI that let’s me do the drag and drop. I just upgraded to WP 2.8.2 and am not familiar with the controls. Many thanks!
oh, cancel that, I see it…at least for this plug-in…
great one! works like magic!
thank you!!!!
[…] site, although some of them I don’t really get much use from. Things like Advanced RSS or Category Order are useful, but I haven’t explored their functionality much at all. Other plugins like […]
[…] site, although some of them I don’t really get much use from. Things like Advanced RSS or Category Order are useful, but I haven’t explored their functionality much at all. Other plugins like […]
[…] It allows you to easily reorder your categories the way you want via drag and drop. It doesn’t require a special widget or anything, just install and reorder. details and download […]
Just lost my whole comment ‘cos I had JS disabled for this site, how annoying…
Anyway didn’t work for me on mac ff3 + wordpress 2.8.1 and now my write post screen is broken.
An extra box appears inside the category box that reloads the whole admin screen then it redirects to a broken page and I can’t write a post?
I’ve removed the plugin and the files so can it be possible that it is that plugin?
I can’t imagine what else it could be.
Ok anyone reading ignore my comment above it is nothing to do with this plugin..
[…] first of these plugins by Wessley Roche allows you to sort your categories to appear in the order you want, whether that be in menus or […]
The Plug does not work on word press 2.8.3 . You can move the order of the categories around but when saved the do not appear where you wanted them. TESTED WITH WINDOWS AND WINDOWS VISTA
Hello,
I’m on WP 2.8 – I used Macintosh OSX 10.5.8
In my case :
– It works with Safari 4.0.2
– It doesn’t work with Firefox 2.0.0.20
Many thanks !
(sorry for my english)
Many Thanks for the plugin.
[…] Category Order The Category Order plugin allows you to easily reorder your categories the way you want via drag and drop. […]
[…] Category Order 又一个分类排序插件,在后台通过拖放即可实现分类的重新排序。 […]
Can you please add the focal plugin support? This plugin stops working if the focal is active!
Thanks
It works on wp 2.8.4 also.
[…] It allows you to easily reorder your categories the way you want via drag and drop. It doesn’t require a special widget or anything, just install and reorder. details and download […]
I like this plugin, but would I be able to access this sorting capability from a page template instead of just in the listing in the sidebar? I have a template which lists my posts by category, but I’d like the presentation of the categories to mimic what i’ve set in this module. Can you help?
It should be alright to use this in a page template. You can get the categories using wp_list_categories(‘echo=0’) and then getting the posts for each category. The order should be the one set in the category order panel.
hi, i m using wp-dtree plugin to display my categories, and wish to be able to order them just like what your neat plugin does.
Problem is dTree menu offers only ‘sort by : Id/date , Ascending/descending’ options. whet piece of the code should i change (i know (a bit) of php) to be able to display the ‘category order’ order instead ??
thanks
raf
[…] Category Order カテゴリー: WordPress, プラグイン タグ: WordPressプラグイン […]
Hi
I’m finding this isn’t working for 2.8.4
Anyone else getting the same?
[…] Category Order (lets you drag/drop categories, handy to tweak menu order) […]
How do i get subcategories to show ? i think i have the wp list categories wrong. Cause if i look i nthe plugin it has more by it and shows it but my actually theme does not ..only shows titles, main ones ? Please help
well,i don’t english……
well,i don’t like english……
Hi, thanks for the nice plugin!
Just one question – are there functions that return the previous/next categories (according to the new order)? Or how would you implement them in WP?
I used this on WordPress 2.8.2 today(28Oct2009) and works like a charm! Thank You, really appreciate the widget!
Any suggestions for parallel blogs? I have my painting blog at http://painting4art.blogspot.com/ and would love to create a WP version. The challenge is to post the same multimedia content in both blogs without going to each CMS. Email posting doesn’t let me post YouTube stuff as desired. Would love to hear back from ya’ll.
[…] Category Order […]
[…] geordend op alfabet. Wil je hier zelf een keuze in hebben dan raad ik je deze plug-in van Wesley Roche aan. 8. Je kunt ervoor kiezen om alle berichten volledig op de hoofdpagina weer te geven (dat is […]
This plugin ONLY works HALF with my theme!
I have two navigation bars, the one on top which works is Page.
But the second bar, under neath, does not work, is Category!
How come??
My codes:
Please help!! You are the god!!!
My codes:
Why cant I paste the code here ? I use
Why still you not reply me dude??
hey there,
i just wanted to know that you saved my day with this brilliant, simple plugin! works great on the site i am doing at the moment… i’ll definitely come back for more and order a beer for you!
Not seems to work for 2.8.6,any upgrade?
In database where can i get the saved information about order? thanks
Thx for the plugin. It’s very useful.
The plugin has a big:
wp_list_categories(‘show_count=0&title_li=&depth=1&use_desc_for_title=1&child_of=’.$this_category->cat_ID);
Even if depth is specified your having your plugin activated will return all children regardless off the depth.
If I specify orderby=id for instance (to skip your filter action) the expected nr. of children is returned. Please have a look and try to fix 🙂
Cheers,
Peter
Drag&Drop funcionality doesent work in 2.8.5 ??? why ? 🙂
[…] Category Order sortiert die angelegten Kategorien in beleibiger Reihenfolge […]
[…] 另外:还有一个插件Category Order,其要实现的功能完全一样,本人没有试过,据说比较使用更加方便,感兴趣的朋友可以去看看。 […]
Hi, I just activated this with version 2.8.6 and it works fine. Would it be possible to update it though for the future?
Hi. Colin notes above that the plugin works fine on WP v2.8.6 however that has not been my experience. I’ve had the plugin installed for a few months with no troubles. Also no troubles when I upgraded to WP v2.8.6. However today after changing the hierarchy of my categories the plugin no longer reorders all the top-level categories. I have even deleted then reinstalled the plugin, and still the same issue.
very usefull plugin. thank you!
With respect,
Alex.
Works just dandy in WordPress 2.8.5.!!!!
Great, great job…Thank you so much!
me too. Fantastic!
…although I had to install from the WP plugin page to get it working. Uploading to my webspace didn’t seem to work.
Still, working now… if only everything worked so well!
Thanks! Works great on 2.9.1 😉
[…] Category Order […]
Really helpful – Thanks a lot
Hey man great plugin, real easy to install and use.
I´m a novice php guy so I´m not getting it to play ball on my live site.
I´m using this
to display the categories I want to reorder on this page: http://www.sparnadur.is/sparnadur-ehf/starfsfolk/
You mention in your guidelines to use wp_list_categories(’orderby=count’);).
…could you give me some pointer to use this method with the code I´m using right now?
Would be most appreciated mate 😉
Hy
it’s really a very good plugin !
But I need to make it display on my home page like he is in the pannel controlin how can i do ?? all my thanks 🙂
Tahnk you very useful post!
The plugin reorders the categories on my admin page but not on my front page. I use the theme “Amazing Grace” and the header php has the following:
Do I need to change this and, if so, how?
Thanks.
Oops, the code disappeared from the post. It is:
wp_list_categories(‘orderby=count&order=DESC&show_count=0&hierarchical=1&title_li=&depth=1’)
Just get rid of the ‘orderby=count’ part. If it’s ordered by count, it’s ordered by count and that’s that 😉
Wow that is so user friendly! Love it- Thank you 🙂
Thank you so much for this plugin. This was just what I was looking for.
[…] 版本 1.0.3 | 作者为 Wessley Roche | 访问插件主页 […]
That’s a great plugin… But for some reason, it just doesn’t seem to work on my site.. It doesn’t work perfectly. Any suggestions!
Thanks for this wonderful, wonderful, wonderful plugin, for the second time round! Thanks Wes Roche !!!
Hi, I use a theme (iTeck) that parses the categories like this (sidebar.php):
wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’);
How must I parse the categories here in order to have your plugin working correctly?
Some order in main categories (parent) is fine but some sub-categories are still parsed out of the “Category Order” custom order 😉
Thank you very much!!
oh, I get myself a provisional solution:
wp_list_cats(‘optioncount=1&hierarchical=1’);
Thanks!
I just found your fantastic plugin. Thank you so much. It is clean easy install, and works perfectly with 2.9.I will be passing your site along to my friends for sure
Dave T
ENJOY THE DAY
[…] Category Order […]
[…] Category Order […]
Just wanted to thank you for the excellent plugin. Using it on my developing website, absolutely the simplest fix to what should be an already existing feature in WP. Thanks again.
Hi,
this plugin doesnt work at 2.9.2. Maybe there is a jquery problem. Will you publish new version.
Thanks.
I’m also having trouble with WP 2.9.2 – the parent/sub situation is creating a problem. Right now the subs are displaying on the main menu and the parent is not showing at all. Parent is “News From…”; subs are: “Seymour”, “Black Creek/Nichols”, and “Schiocton”.
Thanks for any help.
[…] Category Order […]
[…] ended up having to use a wordpress plugin to get the categories ordered dynamically. Check out the Category Order plugin for more […]
thx very much!!!!!!! i will donate yo u!!
It took me a while to figure this out, but it seems very simple to get it word with wordpress 2.9.2. As said,
“If you use wp_list_categories(orderby=”. etc.etc.)”
All I did was remove (orderby=….), now looks like this:
<?php wp_list_categories(”.$theme_options[“orderBy”].’&order=…
And it works GREAT!! see here http://www.fmgroupshop.nl
Thanks for a great plug in!!
Worked for me. Thanks mate!
Where is “Manage » Category Order”? I installed the plugin but can’t find a way to actually use it.
hello
nice plug in. i use over there ( http://www.monk.gr) and its work great.
thanks
Thank you, very useful plugin, which also works with the very latest version of WordPress 🙂
[…] Category Order カテゴリーの並べ替えを簡単に。便利です。 […]
Works like a charm on our site! Thanks a million!
I’d like to use the category order for the menu navigation only…not for the ordering of categories on the home page. My theme uses a query to order posts on the home page…which gets overridden by the category order plugin.
I tried using:
if($taxonomies[0] == “category” && $args[‘orderby’] == ‘custom’)
instead of ordering by name (as per plugin comments/instructions)…
but then the menu navigation is not sorted (well, it’s sorted alphabetically, but not as I have dragged and dropped). please advise. thanks!
home page query:
$categories = get_categories(“orderby=”.get_option(‘thestars_sort_cat_home’).”&order=”.get_option(‘thestars_order_cat_home’).”&depth=3&include=”.$include_cats.”&title_li=”);
// Iterate over each category
foreach ($categories as $category)
{
// Retrieve a handful of posts for this category
query_posts(“cat=” . $category->cat_ID . “&showposts=$intPostCount&orderby=date&order=DESC”);
Thanks a lot for this plugin !
I attempted to use your plugin category order. I am using WP 2.91, PHP 5.1, Theme Atahualpa 3.4.6. I activated the plugin but cannot find Manage>> CATEGORY ORDER. My application requires ordering the categories in a Bar menu in Atahualpa. Can anyone guide me to where I can perform the re-ordering of categories.
I’m back. I finally found where I could manage category-order. However I tried the drag and drop of catregories and saved but when i returned to web site nothing changes. In addition to re-ordering i would like to maintain the bar menu at only one level which is about 6 categories but the plugin does not seem to have capability to limit category count. But first re-ordering does not work ???
London Lee – I found manage under the Posts icon (category order)
Andrew, Monk, konisto, Mateo —- It works for you and I’m glad. So far I haven’t had any luck. I am using WP2.9.1, Atahualpa 3.4.6, PHP 5.1. Please read my comments above . If anyone can make any suggestions, it would be appreciated.
If I can’t use re-order plugin, I would be satisfied with a category limit count but I can’t seem to get any results with that either.
[…] used this code in the ‘What I do’ page on this site in combination with Wessley Roche’s Category Order plugin. It’s important to note that if you do use Wessley’s plugin, you need to leave the […]
[…] Category Order […]
[…] Category Order又一个分类排序插件,在后台通过拖放即可实现分类的重新排序。 […]
[…] to order the categories following your (or your clients’) whishes, and I use the well done Category Order, but it doesn’t work with WPML, unless you try to force the plugin to eat your manipulated […]
Very interesting. Are you planing it for 3.0 custom post type and their custom taxonomies?
Thanks! This worked like a charm… I couldn’t get ‘My Category Order’ to format correctly for my gallery categories, but your plug in did it right on the first try without messing up my formatting. Thanks so much!!
Unfortunately I cannot make it work.
WP 2.92 Chinese Simplified version.
My category name is in Simplified Chinese and I am using FF3.6.
When I click and start dragging one category, it just show a normal text pointer that highlight text.
I am using CO 1.0.3.
Any advice?
[…] Category Order […]
Hi, The Category Order V1.0.3 plugin is not Compatible with wordpress 3 and new updates
Thank you very much Sir, very simple to install/use and works perfectly with wordpress 3.
[…] Category Order カテゴリの表示順を簡単に変更できるプラグイン […]
[…] Category Order – This seems like a simple plugin but there have been countless times where I’ve needed […]
Works fine in 3.0.1 as well. Thanks!
Second that. Thanks for a nice clean plugin!
Hey,
Have been using this for a while and it works well.
Have just added a custom post type with a custom taxonomy to my site, just wondering if there is a way of altering the code easily so that I can have it on that menu and displaying the custom taxonomy, rahter than ‘category’?
Thanks.
Seems to work just fine with WordPress 3.01. Thanks so much! The other tool for this, My Category Order, did not work for me.
Hm short question, is it possible to order Categories from a custom Post Type?
If the answer is yes…. How? =)
I would also like to use your plugin for custom post type taxonomies.
Is it possible? I am willing to help or donate if it needs to be developed.
[…] Category Order – Beiträge lassen sich in WordPress in Kategorien einordnen, und diese Kategorien kann man sich im Menü anzeigen lassen. Da es sich bei WordPress ja ursprünglich ja um ein BLOG-System handelt, sortiert es die Kategorien zum schnellen Auffinden alphabetisch. Viele Websitebetreiber möchten aber die Kategorien als “Menüpunkte” nutzen und die Reihenfolge selbst bestimmen. Entweder muss man nun ein Text-Widget selbst erstellen und jeden Menüpunkt per Hand eintragen und bei Änderungen immer wieder updaten, oder man nutzt Category Order und sortiert seine Kategorien per Drag & Drop. […]
Tnx from Brasil!! D+++
i can bake you a cake!!!
so easy I’m about to cry, only geeks can understand that 😉
thanks a lot from Hanoi
[…] Category Order […]
[…] çevirdim. Eklentinin orijinal ismi “Category Order”. İsteyen arkadaşlar buraya tıklayarak eklentinin geliştiricisini ziyaret […]
it worked great on my site, which runs on wordpress 3.01. Thanks!
[…] Category Order: I think this is self-explanatory, but it just helps make the place look a bit neater and shows some prioritisation. […]
I am using the latest version of Thesis 1.8 with the latest version of WordPress.
Having problem with your step 5: That’s it, now you can go to Manage » Category Order and reorder the categories the way you want.
Able to activate your plugin, but can’t find in my list of Widgets . . . HELP.
thanks so much! i spent few hours researching!!!
hugs!
Thank you man 🙂
This is brilliant and so helpfull. It’s a blast not having to plan ahead all of you’r catagories before creating them in order to get them in the right order
This works great! Thank you very much. 🙂
Activated this plugin on multi-site installation of WP 3.0.1 and it crashed the database server in about 1 min.
Has it been tested on the new multi-site feature of WP 3.x?
[…] der Link zur PlugIn Seite Dieser Beitrag wurde unter Meine Erfahrungen veröffentlicht. Setze ein Lesezeichen auf den […]
[…] Blog Reordering – πρόσθετο που επιτρέπει την ανακατανομή και την προσαρμογή της εμφάνισης των άρθρων ενός Ιστότοπου. Ο διαχειριστής με αυτό το πρόσθετο έχει την δυνατότητα να επιλέγει την σειρά προβολής των άρθρων μίας κατηγορίας, ή ολόκληρου του Ιστολογίου. Η ιεράρχηση γίνεται με τη χρήση αριθμών κατά αυξανόμενη ή φθίνουσα (ascending, descending) σειρά, ενώ υπάρχουν και επιλογές για αλφαβητική ταξινόμηση ή σύμφωνα με την ημερομηνία δημοσίευσης του άρθρου. […]
Wonderful plugin, works great in 3.0.1, thank you!
What i big help this is. It will save hours of work on many websites.
Works fantastic i just loaded in 85 links all in the right cats in seconds…
Thanks
Installed the plugin – but I can’t find “Manage” ANYWHERE. What menu is it supposed to be in? Your instructions are pretty thin on that point.
I had the same Q but just solved it.
In the DASHBOARD, move your cursor to the POST icon. Then a drop down menu will show. “Category Order” will be one of the choices. Good Luck!
Worked great on WP 3.0.1 on the first try! Thanks!
Excuse me ، how the parameter should be exactly ??
this is my function :
wp_list_categories(”);
[…] Download here Posted in Free Stuff « Website showcase: Large image backgrounds You can leave a response, or trackback from your own site. […]
[…] Order (WordPress Guy) […]
[…] Version 1.0.3 | By Wessley Roche | Visit plugin site […]
Thanks for the info. Do you have any idea on how to re-order menu items.
I installed Thesis – but can’t find info on this anywhere…
[…] 使用很简单,下载Category Order插件,然后解压上次至wp-content/plugins/。然后后台激活插件就可以了。 […]
[…] Visit Category Order Plugin page here […]
[…] Category Order Plugin from wpguy offers an easy way for self-hosted WordPress users to re-order their categories. The plugin offers a drag and drop interface making it easy to manage and re-order categories on the fly. […]
Hello
Using your excellent plugin on site http://www.tandooricookingexpert.com/ We have 115 categories in total. the plugin seems to have stopped working. it will no longer allow drag and drop to move order around. is there a parameter i could use to change this. i think it may be when we went into three digits, ie from 99 to 100 categories.
wow you have more than 100 categories. thats next level.
This is a pretty good plugin than others like My Category Order, it works very well. Just because I’ve got too much plugins now could you please tell, is it possible to keep the order function or keep the current category order by code somewhere without plugin?
this was the plugin i was lookin for , so nice of u to put this here……a heartily thanxxxx
[…] order of categories I installed a plugin called "Category Order" (Category Order | WordPress Guy) that was recommended in an earlier post so as to put categories in an order that is not […]
[…] istediğiniz şekilde sıralayabilirsiniz. WordPress Kategorileri Sıralama Eklentisi: İNDİR Beğendiyseniz […]
[…] Category Order (by Wessley […]
Hey, I’ve loved using this plugin on various sites, but I’m having problems getting it working in an installation in a subdirectory – thought this was fixed in v1.0.1 – what should I do, as can’t change the installations directory? Thanks 🙂
[…] page order & category order: These plugins allow you to sort the order you want your pages and categories to show up on […]
Thanks! Just what I needed. But please change the documentation to say:
In WordPress 3.1, go to your Dashboard and drop down the Posts menu in the left-hand sidebar. Somewhere on that list will be Category Order. Click that, then drag and drop your categories. You must click the Order Categories button to save your changes before you leave the page (even if you’re just clicking More >> to move to a page of subcategories).
Thanks again!
Updated, thanks!
I found this plugin very useful, thx. I do have a problem now: the drag & drop function doesn’t work. The mouse arrow changes correctly when I move upon the categories, but it cannot move them. I’m using wordpress 3.1.1
Please help.
same ..
I found this plugin very useful, thx. I do have a problem now: the drag & drop function doesn’t work. The mouse arrow changes correctly when I move upon the categories, but it cannot move them. I’m using wordpress 3.1.1
Please help.
Did not work for me. Here is the calling script on my header.php
php wp_list_categories(‘title_li=’);
Please give me a advice.
thanks
Worked beautifully! Thank you so much.
the javascript drag and drop diddn’t work for me but it’s a nice plugin.
TypeError: Result of expression ‘element.dispatchEvent’ [undefined] is not a function.
could you pleas add custom post_type support and a settings page where you can specify in which post types the plugin should appear?
Hello
I’ve upgraded my WordPress to 3.0.1 and plugin doesn’t work anymore 🙁
The section where I can drag and drop categories in the order I want, does’t work anymore. It won’t drag or drop anything…. Anyboby had the same issue??
Thank so much in advance!!!
excellent !! thank you
Hello,
What file can I find this (wp_list_categories) in?
Thanks,
Clifton
Hi,
Today I set some of my child categories as parent categories. But this plugin doesn’t recognise my new parent categories, it still orders my old parent categories but it doesn’t order my new parent categories. I can’t order my new parent categories, the ones which were formerly child categories of a parent category. How can fix this?
Excellent plugin, especially if you are working on autoblogs.
Cheers
A
This plugin does not work on 3.1.3
Works great on 3.1.3 but you need to go to POSTS and then CATEGORY ORDER to reorder your categories.
Thanks for creating an awesome plugin!
[…] Category Orderカテゴリーの順序を変えるプラグイン […]
[…] morning. I noticed that WordPress doesn’t allow you to order your categories, a quick Google found Category Order which works great, and has a nice Ajax interface. Tagged as: Website, WordPress Leave a comment […]
I needed to add the orderby=order parameter to the wp_list_categories function call in order to get it to work. For instance:
wp_list_categories(‘hide_empty=1&show_count=0&orderby=order&depth=1&title_li=Categories’);
[…] The Category Order plugin allows you to easily reorder your categories the way you want via drag and drop. Версия 1.0.3 | Автор: Wessley Roche | Перейти на страницу плагина […]
[…] Category Order […]
I can’t get this plugin to work. It used to work but has stopped. I can’t sort the categories by moving them in the Category Order tab. Any help would be appreciated. I am using version 1.0.3 in wordpress 3.2.1.
Hi,
I am using your category plugin however sub categories (parent) on the homepage appear and normal categories. Basically I want the categories to look like this in the right side catagory menu:
For example i want the categories to look like this:
Fashion
– Men
– Women
At the moment it looks like
Fashion
Women
Men
Thanks,
Peter
ignore comment, sorted 🙂
Muy bueno este plugin, tenia mi categoria ordenado alfabeticamente y me reusaba a cambiar via codigo hasta que encontre este plugin, ahora puedo poder mis categoria en el orden que quiera, gracias..
Thank you very much.
Worked like a charm on 3.2.1.
Great Plugin! Easy to use, straight forward and one click activation!! Thank you so much!
best plugin. its works thanks for admin …..
i hate wordpress beacause i wass searching a plugin to chang my category order and until 1 hours searching i found 2 or 3 plugins that changes my category but i was not working..
and now searching on google and about 5 sec i found this website. I LOVE GOOGLE ! :p
If you are looking for this plugin to use it with custom post types and theirs taxonomy you’ll be able to find it here: https://github.com/lukaszklis/CategoryOrder
Eline sağlık mükemmel eklenti
Try this plugin instead as it’s much better Category Order – Taxonomy Terms Order, it will allow to sort categories and other taxonomies terms. No theme code change is required as it will do the query update on the fly.
[…] 23) Category Order- The Category Order plugin allows you to easily reorder your categories the way you want via drag and drop. It doesn’t require a special widget or anything, just install and reorder. […]
Great plugin …. Thanks.
Excellent! Perfect plugin for WP 3.3.1.
After two days and many installed / uninstalled plugins, finaly great solution for my Seconday menu – category & sub-category ordering.
Big compliment! This work is valid for donation!
😀
[…] The Category Order plugin allows you to easily reorder your categories the way you want via drag and drop. Version 1.0.3 | Von Wessley Roche | Besuch die Plugin-Seite […]
[…] el plugin Category Order podemos ordenar las categorías y subcategorías pinchando y arrastrando en el orden que queramos […]
Hi, Thank you very much for your plugin. I know that your plugin is very useful if you are using it for WordPress Categories. I am using Jigoshop for my product categories and would like to re-order my product categories. I tried your plugin and it will not work. Can you tell me if there a way to do so like changing a code somewhere? Thank you.
Thanks a lot!!! Great solution for the ordering problem! You rescue me)))
BUG
I moved category to new parent – upper level. To make less steps to dig for users.
And those categories (from child category that was deleted) can not be sorted. UI moves them but not the web site.
I have fixed the bug !!!
Bug in line 58 – just replace with this:
if(is_object($category) && $category->term_id == $id && ($terms[$n]->order == 99999) ){
BUG DESCRIPTION:
if you move category to other parent and delete the previous parent category (like shift up a few categories to upper level) then plugin save in option categoryid twice (the new one + the old one) and the original sorting algorithm use the last one. BUT in wp-admin it seems ok.
So i add extra condition ($terms[$n]->order == 99999) which makes sure that sorting order sets only once.
[…] Category Order Wordpressカテゴリの順番を自分の好きなように変えられるプラグイン。地味すぎですが、何気に気になるところをさくっと解決できます。 […]
[…] の引数の &orderby=id を削除しただけ。理由は、私のブログでは Category Order というプラグインでカテゴリの順序を並べ替えていますが、get_terms() […]
[…] Category Order » Řadí jednotlivé kategorie tak, jak mi to vyhovuje (standardně je to abecedně). […]
Really awesome plugin boss !
You are great !
Yes, very nice plug-ins
Hurrah! Finally I got a webpage from where I can really obtain valuable data concerning my study and knowledge.
是不是新版WP不能用了, 这个插件。我把WP升级后,就用不来了。
I do not know whether it’s just me or if perhaps everybody else experiencing issues with your blog. It appears like some of the text within your posts are running off the screen. Can someone else please comment and let me know if this is happening to them too? This could be a issue with my browser because I’ve had
this happen previously. Kudos
[…] -CATEGORY ORDER: ¿Problemas para ajustar las puñeteras categorías en la plantilla que estés utilizando? Pues se acabaron: con este plugin las colocarás justo en el orden que TÚ quieras, no en el que quiera la plantilla […]
[…] Category Order […]
[…] Category Order […]
Superb blog! Do you have any recommendations for aspiring writers?
I’m hoping to start my own blog soon but I’m a little lost on everything.
Would you propose starting with a free platform like WordPress or go for a paid option?
There are so many options out there that I’m completely overwhelmed .. Any tips? Kudos!
Thanks dude. You saved my life
It works fine with get_categories() but not with get_the_category(). Someone knows why?
Hello there!
Nice plugin, does it work with multisite mode?
magnificent publish, very informative. I’m wondering why the other specialists of this sector do not realize this. You must continue your writing. I am sure, you’ve a huge readers’ base already!
[…] site, but originally, categories were only ordered alphabetically on simple blogging sites. The category order plug-in allows you to easily reorder categories simply by dragging and dropping […]
Hey! Quick question that’s entirely off topic. Do you know how to make your site mobile friendly? My weblog looks weird when browsing from my iphone 4. I’m trying to find a
template or plugin that might be able to resolve this problem.
If you have any suggestions, please share. Cheers!
nice plugin.. its works well with couponpress theme..
[…] 公式サイト:Category Order コメント:ブログ記事のカテゴリー順序を簡単に入れ替えするためのプラグイン。デフォルトで入れててよと言いたくなる。 […]
[…] 1.「Category Order」をダウンロード プラグインフォルダにUPロードして有効化 または […]
Inteligator is the name of the service which will help you in this journey.
I use wp_list_categories() to get the list of all the categories and generate the navigation bar. Is there a way to order this categories in a particular order other than alphabetical ordering.
Hello,
My developer has used your plug-in on the site and it is perfectly good. I only have 1 issue:
I have a tab that orders the ports by Date, name, …. The problem is the order by Date is Ascending. I need it to be Descending. Could you please tell me how I can do it and where I need to change?
Thanks a lot
Spot on with this write-up, I actually believe that this
website needs a great deal more attention.
I’ll probably be returning to read more, thanks for
the information!
Decide the breed of dog you want to cultivate.
Go ahead. s : This is the scent your pup will leave
behind.
Great resources! This is very helpful, thanks for this!
‘Category Order’ was a fine plugin untill now but does not work anymore with WP 3.8.1. The administration panel gets messed up.
Do you mind if I quote a few of your posts as long as
I provide credit and sources back to your site? My website is in the
very same niche as yours and my visitors would genuinely benefit from a lot of the
information you present here. Please let me know if this alright with you.
Appreciate it!
It was really cool and helpful guys… make it cool
This website was… how do I say it? Relevant!!
Finally I have found something that helped me.
Cheers!
Useful information! I bookmarked it.
这个Category Order插件不兼容4.3.1版本,怎么弄下?
Comments are closed.