Q.カスタム投稿「紹介ページ」の詳細ページでも、記事の最終更新日を表示させたいです。
ブログ記事では、テーマオプションから記事の最終更新日を表示させることが可能です。
A.下記の方法でカスタマイズしてください。
編集するファイル: single-introduce.php
編集する箇所: 94行目
<div id="post_date"><time class="entry-date updated" datetime="<?php the_modified_time('c'); ?>"><?php the_time('Y.m.d'); ?></time></div>
↓
<div id="post_date"><time class="entry-date updated" datetime="<?php the_modified_time('c'); ?>"><?php the_time('Y.m.d'); echo ' / '; _e('Last modified at ', 'tcd-w'); the_modified_time('Y.m.d'); ?></time></div>
▼変更後イメージ
この記事は役に立ちましたか?
もし参考になりましたら、下のボタンで教えてください。
今後の記事作成の参考とさせて頂きます!