wordpress – bottom_of_every_post($cintent) – 記事下部に要素を表示

スニペット

/**
 * コンテンツの下に要素を挿入する
 */
function bottom_of_every_post($content) {
  $msg = "test";
  return $content . $msg;
}
add_filter('the_content', 'bottom_of_every_post', 11);

記事下部にコンテンツを表示するためのコード。広告やお勧めコンテンツなどに使える。