加载头文件时可能使用get_header()
. 您可以使用一个挂钩:\'get_header\'
. 您可以将被调用的头名称作为参数。
add_action( \'get_header\', \'wpse_54865_conditional_enqueue\' );
function wpse_54865_conditional_enqueue( $name )
{
if ( \'my_custom_header_name\' === $name )
{
// register your script loading function
}
}