Want to run a simple website using Wordpress as a CMS, but don’t want (or need) the Post functionality? This is the plugin for you. This plugin rewrites the Admin menu link order to put the Pages menu item at the top of the Admin menu.
You may also notice that there are now two download options. This is because version 2.0 is only for WordPress versions 2.7 and above. The menu item numbers changed in 2.7, so the new version of the plugin won’t work correctly on WordPress 2.6 or earlier. If you’re still running version 1.0 of the plugin on an older version of WordPress, there’s no need to update, as you already have the newest version that will work for you (though, I highly recommend you upgrade WordPress as soon as possible to take advantage of the new features and security enhancements).
Downloads:
WordPress 2.7+: CMS-Like Admin Menu
WordPress 2.6 or older: CMS-Like Admin Menu
Changelog:
ver. 1.0 – Initial Release, January 29, 2008
Initial release of plugin.
ver. 2.0 – February 10, 2009
Update to comply with new menu styles in WordPress 2.7.
Screenshot:

Installation:
Upload cms-menu.php to your wp-content/plugins directory.
Upgrades:
Disable plugin in Admin panel. Upload new cms-menu.php, overwriting the original. Enable plugin in Admin menu.
Usage:
There is no usage per se, since all the plugin does is changes link orders on the Admin menu.
Troubleshooting:
If for some reason you run into trouble, please don’t hesitate to email me or post a comment on this page.
thanks for the plugin, i was looking for something like that!
Yes I can tell the different after active/inactive CMS-Like plugins several time.
This is a cool plugin, just what I need for the things I do, however it does not work when I click write. It works just fine when I click on manage but when I click write it goes to post.
Any ideas on how to change this?
Working excellent.
I installed it at a friends blog and she is excited.
Great plugin man – really handy. One minor issue, when you click Manage – the class=”current” isn’t applied to the Manage link (thereby not highlighting the Manage tab you’re on). Any idea how to fix that?
I almost had hemorrhage when I saw this page. I thought I had created an identical plugin, but on closer inspection it seems we have taken a radically different approach.
My plugin takes things a step further by removing the bulk of the admin panel features, leaving behind the bare shell to allow users to create/edit pages only. It is intended for those who are purely using WordPress for running static websites without any need for posts or comments.
Simple CMS WordPress Plugin
I will add a link on my plugin page to yours in case someone finds your plugin more appropriate for their purpose.
[...] А у нас записей нет, есть страницы. Ставим плагин "CMS-like Admin Menu", активируем и [...]
[...] CMS-Like Admin Menu 1.0 [...]
[...] CMS-Like Admin Menu 1.0 [...]
The download link is broken
hi. Thanks for plugin
perfect.
regards
[...] CMS-Like Admin Menu 1.0 [...]
[...] CMS-Like Admin Menu 1.0 [...]
[...] CMS-Like Admin Menu 1.0 [...]
[...] CMS-Like Admin Menu 1.0 [...]
[...] CMS-Like Admin Menu 1.0 [...]
[...] CMS-Like Admin Menu 1.0 [...]
[...] CMS-Like Admin Menu 1.0 (Geniş bilgi için eklenti sayfasına bakınız). [...]
[...] CMS-Like Admin Menu 1.0 [...]
[...] CMS-Like Admin Menu 1.0 (Geniş bilgi için eklenti sayfasına bakınız). [...]
[...] CMS-like admin menu - all it does is make posts second to pages in the menus, ie puts pages before posts. If all you have on your site is pages then this plugin is a nice touch. [...]
[...] CMS-Like Admin Menu [...]
[...] CMS-Like Admin Menu [...]
[...] CMS-Like Admin Menu [...]
[...] CMS-Like Admin Menu [...]
[...] CMS-Like Admin Menu 1.0 (Geniş bilgi için eklenti sayfasına bakınız). [...]
[...] CMS-Like Admin Menu [...]
Sorry, I tested before reading…
Yes, you're right, it doesn't fully fit into the new menu layout (and the menu rows are lapping over each other a little when using Firefox). However, I can live with that.
The problem is that I'm lacking the option for managing posts (I plan using a calendar using posts for the events).
[...] Wordpress Pages as a CMS, but don’t want (or need) the Post functionality? Want to do the …..read more Download Plugin! Version 1.0 Last Updated: February 1, 2008 Author: Keith Solomon Visit [...]
Since you are updating the plugin I`d like to come with a feature request:
1. Add Posts as nr. 2 under Pages. Makes more sense…. ( Pages just moved over Posts, small hack I guess )
2. Options to make Posts into News, Articles, Blog, etc. Makes more sense when used as CMS
I have plans to update it to be more user-configurable, but right now I have more important matters to attend to before I can devote that much time to my personal interests.
[...] CMS-Like Admin Menu [...]
Like the plugin. Thanks for the great work
[...] CMS-Like Admin Menu [...]
[...] CMS-like Admin Menu changes the order of the menu in the Dashboard so that Page is above Posts. Simple enough, but I find it handy. [...]
[...] Post Control Plugin, CMS-Like Admin Menu y Simple CMS permiten personalizar el panel de administración de Wordpress, añadiendo o quitando [...]
[...] CMS-Like Admin Menu 1.0 (Geniş bilgi için eklenti sayfasına bakınız). [...]
[...] CMS-Like Admin Menu 1.0 (Geniş bilgi için eklenti sayfasına bakınız). [...]
Cool Plugin I use that on a lot of my customer websites, thank you!
[...] http://reciprocity.be/cms-menu/ [...]
I rewrote the function to make it easier to simply rearrange the menus. Just edit the plugin and replace this funtion:
function change_post_links() {
global $menu;
// copy menus
$temp[5] = $menu[5]; //posts
$temp[10] = $menu[10]; //media
$temp[15] = $menu[15]; //links
$temp[20] = $menu[20]; //pages
// reset menus
$menu[5] = $temp[20]; //move pages
$menu[10] = $temp[5]; //move posts
$menu[20] = $temp[10]; //move media
}
First it copies the menus to a temporary array. Wordpress goes in increments of 5, im guessing to leave room for custom menus. If you have custom or additional menus you may need to add them as well. Then it reassigns the menus to whatever order you want. In my example above it changes it to Pages > Posts > Links > Media. I did not bother changing the other menus, but if you want to just add them in.
I believe this method is easier than reassigning every submenu.
Hi just checking whether anyone has any problems with a duplicate 'Categories' menu item when using this plugin, as im having. Any help on how to fix this appreciated, thanks
Had the same problem. Fixed it by changing a number in cms-menu.php
Change the line that starts with this
$submenu['edit.php'][20] = array(__('Categories')
to this
$submenu['edit.php'][50] = array(__('Categories')
That seemed to make it work fine for me
with wp 2.8+
open cms-menu.php
comment lines:
37-38
41-44
now you're good
It took a bit more than that, but a new version was just released this morning that fixes the double Category link issue and added support for custom taxonomies. Downloads both here and at WP Extend have been updated, so grab the new version.