Search Console での「構造化データ(hentry)」エラーの修復方法(テーマSimplicity)

2016年8月8日

スポンサーリンク

「updated がありません」の修復は以下の通り。

投稿ページの時間表示設定「datetime.php」

を以下のように変更した。

<?php if ( is_update_date_visible() ): //更新日を表示する場合?>
<span class=”post-update”><span class=”fa fa-history fa-fw”></span><time class=”entry-date date updated” datetime=”<?php echo get_the_time(‘c’) ;?>”><?php if ($mtime = get_mtime( get_theme_text_date_format() )) echo $mtime; ?></time></span>

<?php if ( is_update_date_visible() ): //更新日を表示する場合?>
<!—————-updated の表示(非表示記述とした)—————–>
<span class=”entry-date date updated” style=”visibility: hidden;”><a href=”<?php echo get_month_link(get_the_time(‘Y’), get_the_time(‘m’));?>”><?php echo get_the_date(“Y.m.d”);?></a></span>
<!—————-updated の表示(非表示記述とした)—————–>

 

スポンサーリンク