错误信息内容分别是:
Warning: Missing required field 「entry-title」 。
Warning: Missing required field 「updated」 。
Warning: Missing required hCard 「author」 。
对于 entry-title 的错误信息修改方法是:
打开single.php文件,找到类似<h1><?php the_title(); ?></h1> 一行,将其修改为<h1 ><?php the_title(); ?></h1>(有些模版可能是 h2 或其他)
对于 updated 的错误信息修改方法是:
打开single.php文件,找到<?php the_date();?> 一行,将其修改为<div ><?php the_time('F S, Y'); ?></div>
对于 author 的错误信息修改方法是:
打开single.php文件,找到<?php the_author(); ?> 一行,将其修改为<span ><span ><?php the_author(); ?></span></span>