SO网友:Albert S.
之所以会发生这种情况,是因为这些函数是直接从函数调用的。php文件,不使用函数。找出函数中的哪一行。php不在这样的函数中,请添加它们。
日期选择器示例:
-而不是在函数中。php:
wp_enqueue_script(\'jquery-ui-datepicker\');
wp_enqueue_style(\'jquery-ui-css\', \'//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css\');
wp_enqueue_style(\'jquery-ui-css\', \'//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css\');
-我们添加此
// We define the function:
function MYTHEME_scripts() {
wp_enqueue_script(\'jquery-ui-datepicker\');
}
// Add the functions to WP loading list.
add_action( \'wp_enqueue_scripts\', \'MYTHEME_scripts\' );
function MYTHEME_styles() {
wp_enqueue_style(\'jquery-ui-css\', \'//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css\');
wp_enqueue_style(\'jquery-ui-css\', \'//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css\');
}
// Add the functions to WP loading list.
add_action( \'wp_enqueue_style\', \'MYTHEME_styles\' );
希望它能起作用