wordpress提示Missing required field entry-title updated hCard author错误
发布:smiling 来源: PHP粉丝网 添加日期:2015-03-23 15:58:46 浏览: 评论:0
wordpress提示Missing required field entry-title updated hCard author错误是什么原因呢?下面小编就为各位来介绍关于此问题的解决办法吧.
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.//开源软件:phpfensi.com
<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就行了,到底是不是自己测试一下.
Tags: Missing required field entry-title
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)