Disable Visual editor for all users
The easiest way seems to be to use the Disable Visual Editor Plugin. The plugin also recommends that you remove the wp-includes/js/tinymce/ directory, but will require maintenance every upgrade.
The easiest way seems to be to use the Disable Visual Editor Plugin. The plugin also recommends that you remove the wp-includes/js/tinymce/ directory, but will require maintenance every upgrade.
I recently got this working. You should search and replace metaname with your meta box name. The key to maintaining formatting was using wpautop(); when saving the data. add_action( ‘add_meta_boxes’, ‘add_metaname_box’); add_action( ‘save_post’, ‘metaname_save’); function add_metaname_box() { add_meta_box( ‘metaname_id’, __( ‘metaname text’, ‘metaname_textdomain’), ‘metaname_custom_box’, ‘page’ ); } function metaname_custom_box() { global $post; wp_nonce_field( plugin_basename( __FILE__ … Read more
This is easy to do using the jupyter-themes package by Kyle Dunovan. You may be able to install it using conda. Otherwise, you will need to use pip. Install it with conda: or pip: You can get the list of available themes with: So change your theme with: To load a theme, finally, reload the page. The docs and … Read more
Just the $ (dollar sign) key. You can use A to move to the end of the line and switch to editing mode (Append). To jump the last non-blank character, you can press g then _ keys. The opposite of A is I (Insert mode at beginning of line), as an aside. Pressing just the ^ will place your cursor at the first non-white-space character of the line.