LoginSignup
0
0

More than 1 year has passed since last update.

Wordpress+elementor+JQuery

Last updated at Posted at 2023-01-05

elementorのデフォルト機能を活用して、簡単に個別ページやテンプレートにJQueryを使用可能。
拡張プラグインのインストールは不要。

htmlウィジェットで以下のように記述する。

<script type="text/javascript">
(function($) {
    $(function() {
        //ここにスクリプトを配置
    });
})(jQuery);
</script>

拡張プラグインの使用

elementor には多くの拡張ウィジェットを有するプラグインがリリースされているが、JQueryの拡張ウィジェットを使用するためだけにインストール・有効化するのは適切ではない。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0