循环在中尚不可用wp_enqueue_scripts
, 所以is\\u single()etc-pp不起作用。但是,查询的对象已经确定,因此您可以使用
add_action("wp_enqueue_scripts", function() {
$qo = get_queried_object();
if(get_class($qo) == "WP_Post") {
if($val = get_field("my-field", $qo->ID)) {
wp_enqueue_script("jquery");
}
}
});