使用use
声明:
add_filter( \'single_template\', function ( $template ) use ( $name ) {
或者一次传递所有模板,只创建一个函数:
add_filter( \'single_template\', function ( $file ) use ( $templates ) {
global $post;
if ( in_array ( $post->post_type, $templates ) )
return __DIR__ . "/{$post->post_type}.php";
return $file;
});