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

2016年8月7日

スポンサーリンク

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

固定ページ「page.php」

の以下の部分

<div class=”post-attributes”>
<!–Comments Area–>

の上に以下を追加した。

(「style=”visibility: hidden;」により非表示としている)

<!—————-updated start—————–>
<ul class=”author”>
<li 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></li>
</ul>
<!—————-updated end—————–>

 

投稿ページ「single.php」

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

<li class=”entry-date”>

<li class=”entry-date date updated“>

 

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

ウィジェット/サイドバー

に以下を追加した。(Google+にリンクした)

<a href=”https://plus.google.com/u/1/100480140034701018932″ >Google+ </a><span class=”byline”><span class=”author vcard”><a class=”url fn n” href=”https://plus.google.com/u/1/100480140034701018932″ rel=”author”>結婚式カメラマン</a></span></span>

 

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

固定ページ「page.php」 投稿ページ「single.php」

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

<h1>

<h1 class=”entry-title”>

スポンサーリンク