function.php から <head>タグ内にコードを挿入する方法です。
headタグが編集できない場合などに便利です。
私の場合、Elementorを使用している投稿のheadを変更したかったときに使いました。
function.php
1 2 3 4 5 6 7 8 |
function head_custom() { echo '<meta name="robots" content="noindex">'; } add_action( 'wp_head', 'head_custom', 99); |
例は、headにメタタグを入れるという内容です。