Mobile app version of vmapp.org
Login or Join
Gail5422790

: HEntry microformats tags within I am getting "Missing: author, Missing: entry-title, Missing: updated" microformat error in Google's structured data testing tool. I am showing the title in different

@Gail5422790

Posted in: #Html #Microformats

I am getting "Missing: author, Missing: entry-title, Missing: updated" microformat error in Google's structured data testing tool.

I am showing the title in different way on my page that I cannot simple use <h1 class="entry-title">title...</h1>.

Is it possible to use this with in meta so that it (title) does not show on the page? Like we can do in Schema.org or Open Graph

<meta property="og:title" content="title..." />


<meta itemprop="headline" content="title..." />


The solution I can think of <span class="entry-title">title...</span> and then set display: none for span .entry-title{display: none;} in style sheet.

Just FYI, it is a WordPress blog site.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Gail5422790

2 Comments

Sorted by latest first Latest Oldest Best

 

@Jennifer507

Use all class under a class
<div class='hentry'><h1 class='entry-title'></h1>
All other tag here similarly</div>

10% popularity Vote Up Vote Down


 

@Megan663

Google only wants you to mark up data that is visible to the user. See their Microformat quality guidelines:


Markup should not be used to hide content not visible to users in any form, since it might create a misleading or deceptive search experience.


If you want Google to use your marked up data, using meta elements or hidden elements is not allowed unless the same text appears visible to the user.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme