如何将简单的 jQuery 脚本添加到 WordPress?
WordPress 是一个开源的 CMS,可用于开发动态网站。让我们学习如何将 jQuery 脚本添加到 WordPress 中。在 WordPress 主题文件夹中创建一个名为 "js" 的文件夹,然后添加一个文件。该文件将是扩展名为 “.js” 的查询文件。将 jQuery 脚本添加到该文件中。我们已将其命名为 new.js,
这是你的 jQuery 脚本
jQuery(document).ready(function($) { $('#nav a').last().addClass('last'); });
打开主题的 functions.php 文件。使用 wp_enqueue_script() 函数,这样你才能添加你的脚本。
以下是代码
add_action( 'wp_enqueue_scripts', 'add_my_script' ); function add_my_script() { // name your script to attach other scripts and de-register, etc. wp_enqueue_script ( ‘new', get_template_directory_uri() . '/js/add_my_script.js', array('jquery') // this array lists the scripts upon which your script depends ); }
假设你的主题在正确的位置拥有 wp_head 和 wp_footer ,那么这将起作用。
广告