Skip to content

Instantly share code, notes, and snippets.

@caercam
Created November 6, 2014 07:40
Show Gist options
  • Save caercam/fee98c7eb6c823daabd1 to your computer and use it in GitHub Desktop.
Save caercam/fee98c7eb6c823daabd1 to your computer and use it in GitHub Desktop.
Remove WPMOLY 2.0 Headbox tabs. Place this at the end of your theme's functions.php file.
function wpmoly_remove_headbox_tabs( $tabs ) {
unset( $tabs['meta'], $tabs['details'] );
return $tabs;
}
add_filter( 'wpmoly_filter_headbox_menu_link', 'wpmoly_remove_headbox_tabs', 10, 1 );
add_filter( 'wpmoly_filter_headbox_menu_tabs', 'wpmoly_remove_headbox_tabs', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment