Stop WordPress automatically showing

tags

前端 未结 7 2323
猫巷女王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:32

    you can try this plugin

    http://wordpress.org/plugins/raw-html/
    

    or else user this in theme's functions.php file

    remove_filter( 'the_content', 'wpautop' );
    remove_filter( 'the_excerpt', 'wpautop' );
    

提交回复
热议问题