固定ページの日付の非表示 削除方法
削除方法
個別投稿ページ page.phpの以下の部分を探す。
1 2 3 4 5 6 7 8 9 10 | <div class="blogbox <?php st_hidden_class(); ?>"> <p><span class="kdate"><i class="fa fa-pencil" aria-hidden="true"></i> <time class="entry-date date updated" datetime="<?php the_time(DATE_W3C); ?>"> <?php the_time( 'Y/m/d' ); ?> </time> <?php if ( $mtime = st_get_mtime( 'Y/m/d' ) ) { echo ' <i class="fa fa-repeat"></i> ', $mtime; } ?> </span></p> </div> |
上記のコードを削除すると日付を消すことができる
非表示にする方法
<!--
と
-->
を回のように付け足すと日付を非表示にすることができる。
1 2 3 4 5 6 7 8 9 10 11 12 | <!-- <div class="blogbox <?php st_hidden_class(); ?>"> <p><span class="kdate"><i class="fa fa-pencil" aria-hidden="true"></i> <time class="entry-date date updated" datetime="<?php the_time(DATE_W3C); ?>"> <?php the_time( 'Y/m/d' ); ?> </time> <?php if ( $mtime = st_get_mtime( 'Y/m/d' ) ) { echo ' <i class="fa fa-repeat"></i> ', $mtime; } ?> </span></p> </div> --> |
上記で日付をコメントアウトできる。
固定ページの日付について
固定ページの使用は日々のブログの投稿ページとは違い、プロフィールやお問い合わせなど日付があまり必要ではないページなのではないかと思い削除、または非表示にした。
RSSで取得した地震速報ページも固定ページで作成したが、公開日は全く必要がない。