賢威7で日付非表示(消す)する方法
ステップ①
まずワードプレスの設定を変更する。
ステップ②
以下コードを削除する
<?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 } ?>
参考:ttps://kaigaie.com/keni-date/