Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created March 19, 2014 19:37
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 WebEndevSnippets/9649577 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/9649577 to your computer and use it in GitHub Desktop.
Soliloquy: Remove Soliloquy Settings panel from post types
add_filter( 'soliloquy_skipped_posttypes', 'we_remove_soliloquy_setting_panel' );
/**
* Remove Soliloquy Settings panel from post types
*
*/
function we_remove_soliloquy_setting_panel() {
return array( 'attachment', 'revision', 'nav_menu_item', 'envira', 'soliloquy', 'foobar' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment