mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
9 lines
170 B
Text
9 lines
170 B
Text
add_action(
|
|
'admin_menu',
|
|
function() {
|
|
if ( class_exists( 'Jetpack' ) && ! current_user_can( 'manage_options' ) ) {
|
|
remove_menu_page( 'jetpack' );
|
|
}
|
|
},
|
|
999
|
|
);
|