Stop WordPress automatically showing

tags

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

    You need to run the remove_filter function in the after_setup_theme hook. The reason been is that it might get overrun by later on by the content or excerpt. So you would use the function as follow

    function remove_the_wpautop_function() {
        remove_filter( 'the_content', 'wpautop' );
        remove_filter( 'the_excerpt', 'wpautop' );
    }
    
    add_action( 'after_setup_theme', 'remove_the_wpautop_function' );
    

提交回复
热议问题