1.全ての日付を非表示にする場合
ダッシュボード → 設定 → 一般 → 日付と時刻のフォーマットの部分を空欄に。
「変更を保存」をクリックし、終了。
2.トップページの日付を非表示にする場合
ダッシュボード → 外観 → テーマエディター → メインインデックスのテンプレート(index.php)
変更前:
newposts_keni($new_info_rows,1,1,"year",0,the_keni('new_info')); ?>
変更後:
newposts_keni($new_info_rows,1,1,"year",0,the_keni('new_info')); ?>
「ファイルを更新」をクリックし、終了。
3.トップページの記事一覧の日付を非表示にする場合
ダッシュボード → 外観 → テーマエディター → メインインデックスのテンプレート(index.php)
変更前:
<div class="post">
<h2 class="post-title"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="post-meta"><span class="post-data"><?php the_time(get_option( 'date_format')); //the_time('Y年m月d日') ?></span> <?php if (!is_tag()) { get_category_keni(', '); } ?></p>
変更後:
<div class="post">
<h2 class="post-title"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="post-meta"><?php if (!is_tag()) { get_category_keni(', '); } ?></p>
「ファイルを更新」をクリックし、終了。
4.記事内上部の日付を非表示にする場合
ダッシュボード → 外観 → テーマエディター → 単一記事の投稿(single.php)
変更前:
<div class="post">
<h2 class="post-title"><?php the_title(); ?></h2>
<p class="post-meta"><span class="post-data"><?php the_time(get_option( 'date_format')); //the_time('Y年m月d日') ?></span> <?php if (!is_attachment()) { ?>[<span class="post-cat"><?php the_category(', ') ?></span>]<?php } ?></p>
<?php get_template_part('social-button'); ?>
変更後:
<div class="post">
<h2 class="post-title"><?php the_title(); ?></h2>
<p class="post-meta"><?php if (!is_attachment()) { ?>[<span class="post-cat"><?php the_category(', ') ?></span>]<?php } ?></p>
<?php get_template_part('social-button'); ?>
「ファイルを更新」をクリックし、終了。
5.記事内上部の日付を非表示にする場合
ダッシュボード → 外観 → テーマエディター → アーカイブ(archive.php)
変更前:
<div class="post">
<h2 class="post-title"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="post-meta"><span class="post-data"><?php the_time(get_option( 'date_format')); //the_time('Y年m月d日') ?></span> <?php if (!is_tag()) { ?>[<span class="post-cat"><?php the_category(', ') ?></span>]<?php } ?></p>
変更後:
<div class="post">
<h2 class="post-title"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="post-meta"><?php if (!is_tag()) { ?>[<span class="post-cat"><?php the_category(', ') ?></span>]<?php } ?></p>
「ファイルを更新」をクリックし、終了。
Reference
WordPressテーマ賢威の日付を消す方法を紹介します。①一括でまとめて全ての日付を消す方法 ②トップページの最新情報 ③トップページの記事一覧 ④記事内上部 ⑤カテゴリーの記事一覧 ⑥タグの記事一覧 ⑦検索結果一覧