Do WordPress wait for something (don\'t know, maybe a minimum of widgets on widget areas, menus, etc) to call the script?
否。如果您告诉WordPress使用正确的方法,它将加载脚本。
您可以使用此方法通过子主题函数文件加载脚本。
function my_scripts_method() {
wp_enqueue_script(\'custom-script\',
get_bloginfo( \'stylesheet_directory\' ) . \'/js/custom_script.js\', array( \'jquery\' ));
}
add_action( \'wp_enqueue_scripts\', \'my_scripts_method\' )
假设脚本位于子主题根目录中名为js的文件夹中。
对于父主题,请替换:
get_bloginfo( \'stylesheet_directory\' )
使用:
get_template_directory_uri()