Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save groupewibi/5f20bc23f0682bdf7dc294d8d883169b to your computer and use it in GitHub Desktop.
Save groupewibi/5f20bc23f0682bdf7dc294d8d883169b to your computer and use it in GitHub Desktop.
add_filter( 'acf/get_valid_field', 'change_post_content_type');
function change_post_content_type( $field ) {
if($field['type'] == 'wysiwyg') {
$field['tabs'] = 'visual'; $field['toolbar'] = 'basic'; $field['media_upload'] = 0;
}
return $field; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment