Created
January 31, 2012 00:29
-
-
Save GaryJones/1707813 to your computer and use it in GitHub Desktop.
Remove Prose Design Settings menu link
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
remove_theme_support( 'prose-design-settings' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'init', 'custom_remove_support' ); | |
/** | |
* Remove Prose design settings if logged in user does not have a designer role. | |
* | |
* @author Gary Jones | |
* @link http://code.garyjones.co.uk/remove-prose-settings/ | |
*/ | |
function custom_remove_support() { | |
global $user_login; | |
get_currentuserinfo(); | |
if ( 'designer' != $user_login ) | |
remove_theme_support('prose-design-settings'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment