取决于你所说的“内容”是什么意思。如果您只想删除帖子正文,那么。。。
function remove_body_wpse_97291($content) {
return "Content temporarily removed";
}
add_filter(\'the_content\',\'remove_body_wpse_97291\',100);
如果您想更积极地删除内容。。。
function remove_all_content_wpse_97291($content) {
include(\'license.txt\'); // example loads the WordPress license agreement as raw text; not pretty
exit;
}
add_filter(\'template_redirect\',\'remove_all_content_wpse_97291\',1);
URL保持不变,但替换内容。
您还可以使用(可能)重定向307 Status code, or 302 possibly,...
function redirect_all_content_wpse_97291($content) {
wp_safe_redirect(\'license.txt\',307);
exit;
}
add_filter(\'template_redirect\',\'redirect_all_content_wpse_97291\',1);