WYSIWYG with HTML source?

Why not automate the move from Drupal to WP? I think WP will fix some of the P tag issue during the upload. http://codex.wordpress.org/Importing_Content#Drupal If that isn’t an option, I think WP is using br’s instead of full new p. From the visual editor, I’d delete the copied break altogether and “enter” a new one.

regEx wp core file

I was able to answer my own question. Simply adding a 0-9 into the code above remedied the situation. Here is the final code: if (!name || !/^[a-z0-9][a-z0-9\-\_:\.]*$/i.test(name)) { tinyMCEPopup.alert(‘advanced_dlg.anchor_invalid’); return; }

Using Iris Colorpicker on TinyMCE shortcodes page [duplicate]

Your problem probably is the following line in your JavaScript file: file : url.replace(‘/js’,”)+’../../tinymce_shortcode.php’ First, this way you’re bringing it out of context. Just load it up front when you init the plugin (and when you’re on a post.php or post-new.php request – see current_screen() return values to narrow that down to the needed requests … Read more