这取决于模板用于输出您要删除的内容的内容。如果您在源代码中查看输出您想要删除的内容的任何函数,它们都有一个过滤器,允许您在可以的地方修改输出__return_false
但是,如果这些模板标记周围有文本或标记,则您唯一的选择是修改模板,最好通过子主题进行修改。
function wpd_remove_modified_date(){
if( is_page() ){
add_filter( \'the_time\', \'__return_false\' );
add_filter( \'the_modified_time\', \'__return_false\' );
add_filter( \'get_the_modified_time\', \'__return_false\' );
add_filter( \'the_date\', \'__return_false\' );
add_filter( \'the_modified_date\', \'__return_false\' );
add_filter( \'get_the_modified_date\', \'__return_false\' );
}
}
add_action( \'template_redirect\', \'wpd_remove_modified_date\' );