Last active
October 24, 2018 13:53
-
-
Save evemilano/eb30071b21ae6c8c7a13 to your computer and use it in GitHub Desktop.
WordPress: HTML default editor
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
# 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";') ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Leggi la guida completa: https://www.evemilano.com/wordpress-impostare-editor-html/