如果您挂接稍后的操作,例如template_redirect
, 您应该能够检查查询变量,以确定是否正在查看您的特定帖子类型。
add_action( \'template_redirect\', \'example_callback\' );
function example_callback() {
if( is_single() && get_query_var(\'your-posttype\') )
wp_enqueue_script( .. your args .. );
}
或者像这样。。。
add_action( \'template_redirect\', \'example_callback\' );
function example_callback() {
if( is_single() && get_query_var(\'post_type\') && \'your-type\' == get_query_var(\'post_type\') )
wp_enqueue_script( .. your args .. );
}
希望这有帮助。