Created
January 10, 2018 18:00
-
-
Save groupewibi/5f20bc23f0682bdf7dc294d8d883169b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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