is_page() 仅接受一个可选参数$page
应该是(int|string|array
) 代表Page ID
, title
, slug
, 或这样的数组。
在标准WP安装上,您的代码应该如下所示。
add_action( \'wp_enqueue_scripts\', \'enqueue_date_picker_styles_and_scripts\', 101);
function enqueue_date_picker_styles_and_scripts() {
if ( is_page(\'page-slug-here\') ) { // Replace page-slug-here with slug of page at races/community/add
wp_enqueue_style(\'bootstrap-datepicker-css\', \'//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/css/bootstrap-datepicker.standalone.css\');
wp_enqueue_script(\'bootstrap-datepicker-js\', \'//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/js/bootstrap-datepicker.min.js\', array(\'jquery\'),\'1.8.0\', true);
}
}