wp_head,wp_footerにコードを追加
- 公開日:
- 更新日:
- 文字数:214文字
//wp_headに追加
function adds_head() {
echo ''."\n";
}
add_action('wp_head', 'adds_head');
//wp_footerに追加
function adds_footer() {
echo '
Hello World
'."\n";
}
add_action('wp_footer', 'adds_footer');