📜  wordpress 从内容中删除 p - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:22.489000             🧑  作者: Mango

代码示例1
// Prevent WP from adding 

tags on all post types function disable_wp_auto_p( $content ) { remove_filter( 'the_content', 'wpautop' ); remove_filter( 'the_excerpt', 'wpautop' ); return $content; } add_filter( 'the_content', 'disable_wp_auto_p', 0 );