PR

WPテーマ『賢威7.0』で公開日と更新日を削除!非表示にする方法

スポンサーリンク

賢威7.0で投稿記事や固定ページ、カテゴリページ等から公開日と更新日を表示させなくする方法をシェア。

 

single.phpの以下を削除(19行目~24行目あたり)。

<?php if (get_the_time('Y-m-d') != get_the_modified_date('Y-m-d')) { ?>
				<p class="post-date"><?php _e('Published on','keni') ?> : <time datetime="<?php the_time('Y-m-d'); ?>" itemprop="datePublished" content="<?php the_time('Y-m-d'); ?>" ><?php the_time(get_option('date_format')); ?></time> / <?php _e('Last modified on','keni') ?> : <time datetime="<?php the_modified_date('Y-m-d'); ?>" itemprop="dateModified" content="<?php the_modified_date('Y-m-d'); ?>"><?php echo get_the_modified_date(get_option('date_format')); ?></time></p>
<?php } else { ?>
				<p class="post-date"><time datetime="<?php the_time('Y-m-d'); ?>" itemprop="datePublished" content="<?php the_time('Y-m-d'); ?>" ><?php the_time(get_option('date_format')); ?></time></p>
				<meta itemprop="dateModified" content="<?php the_time('Y-m-d'); ?>">
<?php } ?>

 

cont.phpから以下を削除(18行目あたり)。

<p class="post-date"><time datetime="<?php the_time('Y-m-d'); ?>"><?php the_time(get_option('date_format')); ?></time></p>

 

以上!

コメント