Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created May 15, 2015 15:42
Show Gist options
  • Save DrewAPicture/d74572e70dc1230c794d to your computer and use it in GitHub Desktop.
Save DrewAPicture/d74572e70dc1230c794d to your computer and use it in GitHub Desktop.
/**
* Hide media buttons from the default editor.
*
* @param array $settings _WP_Editors::editor() settings.
* @param string $editor_id Editor ID.
* @return array (maybe) modified editor settings.
*/
function hide_media_buttons( $settings, $editor_id ) {
if ( 'post' == get_post_type() && 'content' == $editor_id ) {
$settings['media_buttons'] = false;
}
return $settings;
}
add_filter( 'wp_editor_settings', 'hide_media_buttons', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment