作用:判断当前展示的页面是否为 404 页面。 语法: boolean is_404() 返回值:
示例:
<?php add_action('mod.template.load', function(){ if(is_404()){ /** 需要执行的代码 */ } });