Skip to content

Instantly share code, notes, and snippets.

@kurudrive
Last active October 25, 2023 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurudrive/c166f1e77d7a30e5734c5d212d50b74b to your computer and use it in GitHub Desktop.
Save kurudrive/c166f1e77d7a30e5734c5d212d50b74b to your computer and use it in GitHub Desktop.
wp-head にコードを追加する
<?php
/**
* Plugin Name: My Plugin
* Plugin URI:
* Description: これは *** のプラグインです。
* Version: 0.0.0
* Requires at least: 6.0
* Requires PHP: 7.4
* License: GPL 2.0 or Later
*
*/
function my_add_head(){ ?>
<!-- ここに追加したいコードを記載 -->
<?php
}
add_action('wp_head', 'my_add_head');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment