google管理员工具报提取的结构化数据错误,以前都没有的,最近在做blog的手机站,我在想是不是这个引起的。错误如下
错误: Missing required field "entry-title".
错误: Missing required field "updated".
错误: Missing required hCard "author".
1,解决 Missing required field "entry-title"
在标题<?php the_title(); ?>外层加上class entry-title
<h1 class="title"><?php the_title(); ?></h1>
改为
<h1 class="title entry-title"><?php the_title(); ?></h1>
2,解决Missing required field "updated".
在文章发表时间<?php the_time('Y-m-d'); ?>或者<?php the_date();?>外面加上class updated
<span class="date"><?php the_time('Y-m-d'); ?></span>
改为
<span class="date updated"><?php the_time('Y-m-d'); ?></span>
3,解决 Missing required hCard "author"
<?php the_author(); ?>
改为
<span class="vcard author"><span class="fn"><?php the_author(); ?></span></span>
这篇文章发表出来,说明我的问题解决了,只不过网上有人说,只需要改single.php就行了,到底是不是自己测试一下。
网址如下:http://www.google.com/webmasters/tools/richsnippets
上图是已经改好了的,只不过是single.php页面,你也可以试试,分布页,首页等。
转载请注明
作者:海底苍鹰
地址:http://blog.51yip.com/wordpress/1678.html