Category Archives: Structured Data

How to Fix WordPress Missing required field entry-title,Update,hCard Error

Recently I saw lots of structured error from my webmaster, when I tested my WordPress pages via Google Structured Data testing tools, I got the Following errors:
Error: Missing required field “entry-title”.
Error: Missing required field “updated”.
Error: Missing required hCard “author”. How to solve those issues

Just add / update the following codes then all issues will be gone.

<h1 class="title single-title entry-title"><?php the_title(); ?></h1>
<span class="post_date date updated"><?php the_time('j F,Y'); ?></span>
<span class="vcard author">
<span class="fn"><?php the_author(); ?></span>
</span>

How To Add “Publisher” Schema As Structured Data

How can I add “Publisher” schema for my website’s structured data

Here is the example of “Publisher” structured data

<div itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
    <div itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">
        <meta itemprop="url" content="http://softwarehtec.com/logo.png">
        <meta itemprop="width" content="400">
        <meta itemprop="height" content="60">
    </div>
    <meta itemprop="name" content="SoftWareHtec">
</div>