Skip to content

Instantly share code, notes, and snippets.

@aristath
Last active December 13, 2015 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aristath/4962412 to your computer and use it in GitHub Desktop.
Save aristath/4962412 to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: My Custom Plugin
Plugin URI: http://example.com
Description: A description
Author: Me
Version: 1.0
Author URI:
*/
add_action('admin_head', 'my_custom_css');
function my_custom_css() {
if ( !current_user_can( 'manage_network' ) ) {
echo '<style> #pageparentdiv { display: none; } </style>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment