Skip to content

Instantly share code, notes, and snippets.

@JoeHana
Created January 15, 2019 00:10
Show Gist options
  • Save JoeHana/07a70ac284ffae63c763aaf8ffdfba6d to your computer and use it in GitHub Desktop.
Save JoeHana/07a70ac284ffae63c763aaf8ffdfba6d to your computer and use it in GitHub Desktop.
An easy and simple way to show specific elements only to admins, by adding the class "only-admin" to it. Can be used with the menu manager, or elementor or whereever else a class can be defined.
add_action( 'wp_head', function() {
if( ! current_user_can( 'manage_options' ) )
echo '<style>.only-admin {display: none;}</style>';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment