スニペット
/**
* コンテンツの下に要素を挿入する
*/
function bottom_of_every_post($content) {
$msg = "test";
return $content . $msg;
}
add_filter('the_content', 'bottom_of_every_post', 11);
記事下部にコンテンツを表示するためのコード。広告やお勧めコンテンツなどに使える。
/**
* コンテンツの下に要素を挿入する
*/
function bottom_of_every_post($content) {
$msg = "test";
return $content . $msg;
}
add_filter('the_content', 'bottom_of_every_post', 11);
記事下部にコンテンツを表示するためのコード。広告やお勧めコンテンツなどに使える。