您的脚本注册/排队错误。您应该在主题中注册/排队functions.php
文件,而不是在页眉/页内。
此外,您需要使用主题的目录。。。这将沿着mydomain.com/wp-content/themes/BLANK-Theme/js/SliderViewer-1.2.js
.
在中使用此代码functions.php
:
function my_scripts_enqueue_method() {
wp_enqueue_script(
\'SliderViewer\',
get_template_directory_uri() . \'/js/SliderViewer-1.2.js\'
);
}
add_action( \'wp_enqueue_scripts\', \'my_scripts_enqueue_method\' );
这将使脚本排队并注册,并确保在此过程中为主题使用适当的目录。