Remove jet pack For Other Users

Add this code to your theme functions.php file.

	//Remove JetPack For Other users
	function ap_remove_jetpack_page( ) {
	if ( class_exists( 'Jetpack' ) && !current_user_can( 'manage_options' ) ) {
	remove_menu_page( 'jetpack' );
	}
	}
	add_action( 'admin_menu', 'ap_remove_jetpack_page', 999 );

 

Related Posts

No Comments Yet.

Leave a reply

You must be logged in to post a comment.