新的wp企业占即将上线,小改小改记录记录
add_action( 'admin_init', 'wplg_lock_theme' );
function wplg_lock_theme() {
global $submenu;
unset( $submenu['themes.php'][5] );
unset( $submenu['themes.php'][15] );
}
插入主题的 functions.php 即可
进阶:
// remove links/menus from the admin bar
function conference_admin_bar_render() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('comments');
$wp_admin_bar->remove_menu('new-content');
// $wp_admin_bar->remove_menu('get-shortlink');
// $wp_admin_bar->remove_menu('appearance');
}
add_action( 'wp_before_admin_bar_render', 'conference_admin_bar_render' );











发表回复