錯誤信息內容分別是:
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>