我通过函数添加了一个javascript文件。php文件。我正在使用上建议的方法Wordpress Codex. 我的一个问题是,处理版本号列的最佳方法是什么。建议发送jquery版本还是我正在加载的脚本版本?使用此代码。
<?php
function my_scripts_method() {
// register your script location, dependencies and version
wp_register_script(\'custom_script\',
get_template_directory_uri() . \'/js/custom_script.js\',
array(\'jquery\'),
\'1.0\' );
// enqueue the script
wp_enqueue_script(\'custom_script\');
}
add_action(\'wp_enqueue_scripts\', \'my_scripts_method\');
?>