第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

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

JS 文件在 WordPress 中無法正常工作

JS 文件在 WordPress 中無法正常工作

波斯汪 2023-12-11 15:13:04
正如我在標(biāo)題中提到的,我的 js 文件遇到了一些問題。我已經(jīng)測試了 HTML 模板中的腳本并且工作正常,但是當(dāng)我將它們放入文件中時,functions.php有些腳本無法正常工作。這里是functions.php文件:<?phpfunction load_stylesheets(){ /************/}function add_js(){    wp_register_script('jquery-min', get_template_directory_uri().'/js/jquery.min.js', array('jquery'), 2, true);    wp_enqueue_script('jquery-min');    wp_register_script('jquery-migrate', get_template_directory_uri().'/js/jquery/jquery-migrate.min.js', array('jquery'), 2, true);    wp_enqueue_script('jquery-migrate');    wp_register_script('popper', get_template_directory_uri().'/js/popper/popper.min.js', array('jquery'), 2, true);    wp_enqueue_script('popper');    wp_register_script('bootstrap', get_template_directory_uri().'/js/bootstrap/js/bootstrap.min.js', array('jquery'), 2, true);    wp_enqueue_script('bootstrap');    wp_register_script('easing', get_template_directory_uri().'/js/easing/easing.min.js', array('jquery'), 2, true);    wp_enqueue_script('easing');    wp_register_script('jquery.waypoints', get_template_directory_uri().'/js/counterup/jquery.waypoints.min.js', array('jquery'), 2, true);    wp_enqueue_script('jquery.waypoints');    wp_register_script('jquery.counterup', get_template_directory_uri().'/js/counterup/jquery.counterup.js', array('jquery'), 2, true);    wp_enqueue_script('jquery.counterup');    wp_register_script('carousel', get_template_directory_uri().'/js/owlcarousel/owl.carousel.min.js', array('jquery'), 2, true);    wp_enqueue_script('carousel');    wp_register_script('lightbox', get_template_directory_uri().'/js/lightbox/js/lightbox.min.js', array('jquery'), 2, true);    wp_enqueue_script('lightbox');}add_action("wp_enqueue_scripts", "load_stylesheets", "add_js", 999);?>
查看完整描述

1 回答

?
函數(shù)式編程

TA貢獻(xiàn)1807條經(jīng)驗 獲得超9個贊

wp_enqueue_scripts您不能像這樣掛鉤并調(diào)用多個函數(shù):

add_action("wp_enqueue_scripts",?"load_stylesheets",?"add_js",?999);

add_action()接受這四個參數(shù):

  • $tag?(字符串)(必需)掛鉤的操作的名稱$function_to_add。

  • $function_to_add(可調(diào)用)(必需)您希望調(diào)用的函數(shù)的名稱。

  • $priority?(int)(可選)用于指定與特定操作關(guān)聯(lián)的函數(shù)的執(zhí)行順序。較低的數(shù)字對應(yīng)于較早的執(zhí)行,具有相同優(yōu)先級的函數(shù)按照它們添加到操作的順序執(zhí)行。
    默認(rèn)值:10

  • $accepted_args?(int) (可選)函數(shù)接受的參數(shù)數(shù)量。?默認(rèn)值:1

因此,要添加樣式表和腳本,您必須執(zhí)行以下操作:

add_action(?'wp_enqueue_scripts',?'load_stylesheets',?999?);
add_action(?'wp_enqueue_scripts',?'add_js',?999?);


查看完整回答
反對 回復(fù) 2023-12-11
  • 1 回答
  • 0 關(guān)注
  • 187 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號