当Single.php中的复选标记为假时,如何将用户定向到实际的404页面? 时间:2012-12-06 作者:user1462 有人能告诉我如何引导用户访问主404文件,而不必打印一条错误消息,说“找不到文件”。php?例如:<?php if (!$myVar) { // go to 404.php and return an official file not found header } else { // show the following HTML } ?> 1 个回复 最合适的回答,由SO网友:shea 整理而成 您可以使用locate_template() 包含404模板的函数。记住这样做,而不是使用get_header() 或产生任何输出;否则,您将有一个副本。<?php if ( ! $myVar ) { status_header(404); global $wp_query; $wp_query->is_404 = true; locate_template(\'404\'); return; } // otherwise, show the following HTML 结束 文章导航