WordPressサイトでの対処方法となり、全てsingle.phpに以下のものを書く
▼author がありません
<span class=”vcard author”><span class=”fn”>投稿者名</span></span>
▼entry-title がありません
記事のタイトルタグに「class=”entry-title”」を入れる。
例:<h1 class=”entry-title”><?php echo get_the_title(); ?></h1>
▼updated がありません
公開日を「class=”updated”」で囲む
例:<span class=”updated”><?php echo get_the_date(); ?></span>