1
0

More than 3 years have passed since last update.

Worpressのbody直下にスクリプトを入れる方法

Posted at
functions.php

/**
 * bodyタグ開始に挿入
 */
add_action( 'wp_body_open', function() {
    ?>
    <!-- ここから挿入したいソースコードなどスタート -->
    <script src="//accaii.com/abcd/script.js" async></script><noscript><img src="//accaii.com/abcd/script?guid=on"></noscript>
    <!-- ここまで -->
    <?php
});

1
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
1
0