Skip to content

Instantly share code, notes, and snippets.

@kaoru-fukusato
Created March 6, 2020 18:37
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 kaoru-fukusato/44c991a26df841cb8ce1eeb23116656f to your computer and use it in GitHub Desktop.
Save kaoru-fukusato/44c991a26df841cb8ce1eeb23116656f to your computer and use it in GitHub Desktop.
functions.phpからhead内にタグを追加する方法【WordPress】
//headにタグを追加
add_action( 'wp_head', 'add_meta_to_head' );
function add_meta_to_head() {
echo 'ここにhead内に出力したい内容';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment