我知道我可以使用以下代码将脚本文件添加到需要jquery的wordpress页脚中:
<?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',
true);
// enqueue the script
wp_enqueue_script('custom_script');
}
add_action('wp_enqueue_scripts', 'my_scripts_method');
?>
但是,如果我只想添加普通的jquery内联代码片段而不是文件,该怎么办?如何才能做到这一点。
编辑
我知道我可以使用此脚本在页脚中添加一些内容:
<?php
function myscript() {
?>
<script type="text/javascript">
// This depends on jquery
</script>
<?php
}
add_action('wp_footer', 'myscript');
但是,如何指定使用的脚本需要运行jquery。
wp_enqueue_script
脚本文件添加到页脚中,我想向需要jquery的页脚中添加一个代码段。我否决了直接来自法典的答案。我读了抄本,却没有找到答案,所以才问一个问题。如果您再次将我重定向到食典,我将投票否决。
wp_register_script
而wp_enqueue_script
存在的,但你可以检查使用jQuery本身。