Skip to content

Instantly share code, notes, and snippets.

@sybrew
Created February 9, 2018 12:46
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 sybrew/587035398f7b571b30cf95ceb9ed6bdc to your computer and use it in GitHub Desktop.
Save sybrew/587035398f7b571b30cf95ceb9ed6bdc to your computer and use it in GitHub Desktop.
Remove editor support requirement in TSF
<?php
//! Don't include the php tag.
add_filter( 'the_seo_framework_custom_post_type_support', function( $support ) {
return array_diff( $support, array( 'editor' ) );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment