記事の最後に共通の文書を挿入したい場合のメモ。
例えば・・画像、お問い合わせ、メールアドレス、電話番号などを挿入
記事なら(single.php)ファイル内に記述でOKですが・・
今回は使用中のテーマ内のfunctions.phpに下記コードを記述。
// add custom post content function add_post_content($content) { if(!is_feed() && !is_home()) { $content .= '<p>お問い合わせ: 電話番号 0*-****-****</p>'; } return $content; } add_filter('the_content', 'add_post_content');