Skip to content

Instantly share code, notes, and snippets.

@AnatoliyAkhmatov
Last active May 8, 2018 09:47
Show Gist options
  • Save AnatoliyAkhmatov/554219d5988116d20f209c9ae6aeb9cd to your computer and use it in GitHub Desktop.
Save AnatoliyAkhmatov/554219d5988116d20f209c9ae6aeb9cd to your computer and use it in GitHub Desktop.
// html или tinymce
// Установим визуальный редактор, редактором по умолчанию
add_filter( 'wp_default_editor', create_function('', 'return "tinymce";') );
// Установим HTML (текстовый) редактор, редактором по умолчанию
add_filter( 'wp_default_editor', create_function('', 'return "html";') );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment