Stop WordPress automatically showing

tags

前端 未结 7 2381
猫巷女王i
猫巷女王i 2021-01-02 13:05

Wordpress automatically generate lot of unwanted

tags every where. Even the img tag also wrap by these

t

7条回答
  •  忘掉有多难
    2021-01-02 13:38

    I guess this will work fine-

    function my_format_TinyMCE( $in ) {
      $in['wpautop'] = false;
      return $in;
    }
    add_filter( 'tiny_mce_before_init', 'my_format_TinyMCE' );
    

提交回复
热议问题