亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何向WordPress添加一個簡單的jQuery腳本?

如何向WordPress添加一個簡單的jQuery腳本?

富國滬深 2019-07-15 14:53:05
如何向WordPress添加一個簡單的jQuery腳本?我讀過Codex和幾篇關于在WordPress中使用jQuery的博客文章,它非常令人沮喪。我已經將jQuery加載到functions.php文件,但所有的指南都是糟糕的,因為他們認為你已經有了大量的WordPress經驗。例如,他們說現在我正在通過functions.php文件,現在我所要做的就是加載jQuery。我到底該怎么做?具體而言,我要向哪些文件添加代碼?如何為一個WordPress頁面添加它呢?
查看完整描述

3 回答

?
米琪卡哇伊

TA貢獻1998條經驗 獲得超6個贊

經過一番探索,我最后找到與最新的WordPress一起工作的東西。以下是以下步驟:

  1. 查找主題目錄,在目錄中為自定義js創建一個文件夾(

    本例中的定制js).

  2. 將您的自定義jQuery放在這個目錄中的.js文件中(

    本例中的jQuery_test.js).

  3. 請確保您的自定義jQuery.js如下所示:

    (function($) {$(document).ready(function() {$('.your-class').addClass('do-my-bidding');})})(jQuery);
  4. 轉到主題目錄,打開Functions.php

  5. 在頂部附近添加一些代碼,如下所示:

    //this goes in functions.php near the topfunction my_scripts_method() {// register your script location, dependencies and version
       wp_register_script('custom_script',
       get_template_directory_uri() . '/custom_js/jquery_test.js',
       array('jquery'),
       '1.0' );
     // enqueue the script
      wp_enqueue_script('custom_script');
      }add_action('wp_enqueue_scripts', 'my_scripts_method');
  6. 檢查您的網站,以確保它的工作!


查看完整回答
反對 回復 2019-07-15
?
婷婷同學_

TA貢獻1844條經驗 獲得超8個贊

如果你使用WordPress兒童主題要將腳本添加到主題中,您應該將get_Template_Directory_uri函數更改為GET_StyleSheet_Directory_uri,例如:

家長主題:

add_action( 'wp_enqueue_scripts', 'add_my_script' );function add_my_script() {
    wp_register_script(
        'parent-theme-script', 
        get_template_directory_uri() . '/js/your-script.js', 
        array('jquery') 
    );

    wp_enqueue_script('parent-theme-script');}

兒童主題:

add_action( 'wp_enqueue_scripts', 'add_my_script' );function add_my_script() {
    wp_register_script(
       'child-theme-script', 
       get_stylesheet_directory_uri() . '/js/your-script.js', 
       array('jquery') 
    );

    wp_enqueue_script('child-theme-script');}

獲取模板_目錄_uri:/you-site/wp-content/Themes/父母主題

獲取_樣式表_目錄_uri:/you-site/wp-content/Themes/兒童主題


查看完整回答
反對 回復 2019-07-15
  • 3 回答
  • 0 關注
  • 659 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號