我希望我的插件停止wordpress渲染页面。
我已经停止使用渲染页脚和头部
remove_all_actions('wp_footer', 1);
remove_all_actions('wp_head', 1);
但是我无法为内容执行任何操作。如何停止呈现内容?
答案 0 :(得分:0)
您可以使用the_content
钩子并返回一个空字符串:https://developer.wordpress.org/reference/hooks/the_content/。
add_filter( 'the_content', 'filter_the_content', 99 );
function filter_the_content( $content ) {
return "";
}