I would very much like to disable the drag and drop upload feature for tinyMCE (both the default one and the wp_editor() one) because it interacts with my custom...
  • May 16, 2022
  • 0 Comments
Why WP Editor also strips the “placeholder” attribute of the input text element ? Ofcourse, i am using the HTML mode. Here is the input: <input type="text" value="" name="s"...
  • May 16, 2022
  • 0 Comments
I’m trying to set shortcode attribute value to ' " (single and double quote) by using escaped values &#39; &#34;. Example: [shortcode attr="&#39; &#34;"]test[/shortcode] As soon as I switch...
  • May 12, 2022
  • 0 Comments
This is default wordpress add_editor_style function: function add_editor_style( $stylesheet="editor-style.css" ) { add_theme_support( 'editor-style' ); if ( ! is_admin() ) return; global $editor_styles; $editor_styles = (array) $editor_styles; $stylesheet = (array)...
  • May 11, 2022
  • 0 Comments