Skip to content

Instantly share code, notes, and snippets.

@fovoc
Created September 3, 2014 17:29
Show Gist options
  • Save fovoc/b3e4dbf0a980dd11e9a0 to your computer and use it in GitHub Desktop.
Save fovoc/b3e4dbf0a980dd11e9a0 to your computer and use it in GitHub Desktop.
Custom JS snippet for WordPress admin panel
<?php
function my_custom_admin_js() {
echo '<script type="text/javascript">
var jq = jQuery.noConflict();
jq("document").ready(function() {
jq("#0_section_group_li, #0_section_group").hide();
});
</script>';
}
add_action( 'admin_head', 'my_custom_admin_js' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment