Skip to content

Instantly share code, notes, and snippets.

@evemilano
Last active October 24, 2018 13:53
Show Gist options
  • Save evemilano/eb30071b21ae6c8c7a13 to your computer and use it in GitHub Desktop.
Save evemilano/eb30071b21ae6c8c7a13 to your computer and use it in GitHub Desktop.
WordPress: HTML default editor
# Questa regola imposta come default l'editor HTML
add_filter( 'wp_default_editor', create_function('', 'return "html";') );
# Questa regola imposta come default l'editor visuale
add_filter( 'wp_default_editor', create_function('', 'return "tinymce";') );
@evemilano
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment