Remove ‘Links Menu’ from WordPress Admin

Written by on May 17, 2011 in WordPress - No comments
remove-links-wordpress

If you’re like me you built most of your client’s website with WordPress as a CMS. This works great for sites that have a blog, and even for sites that don’t. WordPress is a great way to give your clients a simple way to control all of the pages of their website.

A stock install of WordPress gives you some things that your client won’t need for their site, and will only confuse them. One of these things is the “Links” Menu in the Admin. If you’re creating a simple site with WordPress as a CMS your client isn’t going to need this blogroll functionality, and you’ll be stuck explaining what it is to them.

Luckily you can easily remove the links menu by adding the following to the functions file of your WordPress theme:

add_action( 'admin_menu', 'my_admin_menu' );
 function my_admin_menu() {
 remove_menu_page('link-manager.php');

About the Author

Mike Ilsley "ilz" is a Boston based website designer, front-end developer, WordPress addict, owner of Beantown Design, and exclusive ThemeForest author. Check him out on Twitter, Facebook, Google+ and don't forget to subscribe to the WebDesign&Such email RSS feed. Also, check out his latest project, jQueryMobileShowcase.com.