Extra TinyMCE editor strips and tags?

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

Is there a plugin that provides a stackoverflow style editor for wordpress? [closed]

Welcome to WordPress stack exchange! Just yesterday I created WP-Markdown, which enables Markdown on your posts. It also provides the same interface as this website (the toolbar, and live preview) – however, currently only for comments and bbPress forums (if enabled). That said, (since it would be straightforward to do), I am planning on adding … Read more

Does Notepad++ show all hidden characters?

Yes, it does. The way to enable this depends on your version of Notepad++. On newer versions you can use: Menu View → Show Symbol → *Show All Characters` or Menu View → Show Symbol → Show White Space and TAB (Thanks to bers’ comment and bkaid’s answers below for these updated locations.) On older versions you can look for: Menu View → Show all characters or … Read more