我有一个为客户端开发的插件,它在我的服务器上运行很有趣,但在他们的服务器上不起作用,他们在godaddy上,所以我猜这是他们的PHP版本的问题?
add_filter(\'template_include\', function ( $template ) {
if(is_tax(\'hha_cats\')){
$template = dirname( __FILE__ ) . \'/templates/category-hhavideo.php\';
}
if( is_post_type_archive( \'hhavideo\' ) ){
$template = dirname( __FILE__ ) . \'/templates/archive-hhavideo.php\';
}
return $template;
}, PHP_INT_MAX, 2 );
这段代码是在我遇到另一个问题后由另一个SE用户编写的(here), 有没有一种方法可以在旧版本的PHP上实现这一点?(没有检查,我相信她的服务器是5.2,我的是5.3)。