Title: Google Strutured Data Tool errors
Last modified: August 21, 2016

---

# Google Strutured Data Tool errors

 *  [TheNoobNet](https://wordpress.org/support/users/thenoobnet/)
 * (@thenoobnet)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/google-strutured-data-tool-errors/)
 * Hi, I love your theme, but my webmaster tools is telling me there’s error in 
   the rich snippet … stuff..
 * Anyways,
 * To solve this error, I have to edit single.php manually and adding
    entry-title
   to line 13: `<h1 class="post-title"><?php the_title(); ?></h1>` to make it read:`
   <h1 class="post-title entry-title"><?php the_title(); ?></h1>`
 * To solve Error: Missing required field “updated”
    I have to add <span class=”
   date updated”></span> to line 14: `<p class="post-byline"><?php _e('by','hueman');?
   > <?php the_author_posts_link(); ?> &middot; <?php the_time(get_option('date_format'));?
   ></p>` to make it read: `<p class="post-byline"><?php _e('by','hueman'); ?> <?
   php the_author_posts_link(); ?> &middot; <span class="date updated"><?php the_time(
   get_option('date_format')); ?></span></p>`
 * So by the time all the edits are done, my single.php looks like this:
 *     ```
       <?php get_header(); ?>
   
       <section class="content">
   
       	<?php get_template_part('inc/page-title'); ?>
   
       	<div class="pad group">
   
       		<?php while ( have_posts() ): the_post(); ?>
       			<article <?php post_class(); ?>>
       				<div class="post-inner group">
   
       					<h1 class="post-title"><?php the_title(); ?></h1>
       					<p class="post-byline"><?php _e('by','hueman'); ?> <span class="vcard author"><span class="fn"><?php the_author_posts_link(); ?></span></span> &middot; <span class="date updated"><?php the_time(get_option('date_format')); ?></span></p>
   
       					<?php get_template_part('inc/post-formats'); ?>
   
       					<div class="clear"></div>
   
       					<div class="entry">
       						<div class="entry-inner">
       							<?php the_content(); ?>
       							<?php wp_link_pages(array('before'=>'<div class="post-pages">'.__('Pages:','hueman'),'after'=>'</div>')); ?>
       						</div>
       						<div class="clear"></div>
       					</div><!--/.entry-->
   
       				</div><!--/.post-inner-->
       			</article><!--/.post-->
       		<?php endwhile; ?>
   
       		<div class="clear"></div>
   
       		<?php the_tags('<p class="post-tags"><span>'.__('Tags:','hueman').'</span> ','','</p>'); ?>
   
       		<?php if ( !ot_get_option( 'author-bio' ) && get_the_author_meta( 'description' ) ): ?>
       			<div class="author-bio">
       				<div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div>
       				<p class="bio-name"><?php the_author_meta('display_name'); ?></p>
       				<p class="bio-desc"><?php the_author_meta('description'); ?></p>
       				<div class="clear"></div>
       			</div>
       		<?php endif; ?>
   
       		<?php if ( ot_get_option( 'post-nav' ) == 'content') { get_template_part('inc/post-nav'); } ?>
   
       		<?php if ( ot_get_option( 'related-posts' ) != '1' ) { get_template_part('inc/related-posts'); } ?>
   
       		<?php comments_template('/comments.php',true); ?>
   
       	</div><!--/.pad-->
   
       </section><!--/.content-->
   
       <?php get_sidebar(); ?>
   
       <?php get_footer(); ?>
       ```
   
 * Everytime I update hueman to the newest version, these changes go away and I 
   have to redo them. Can we get these lines coded into the theme by the theme author?
   Thank you.

Viewing 1 replies (of 1 total)

 *  [wikiyu](https://wordpress.org/support/users/wikiyu/)
 * (@wikiyu)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/google-strutured-data-tool-errors/#post-4535457)
 * everytime you are updating hueman you dont have to make these changes. Try “child-
   theme”.

Viewing 1 replies (of 1 total)

The topic ‘Google Strutured Data Tool errors’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/hueman/3.7.27/screenshot.png)
 * Hueman
 * [Support Threads](https://wordpress.org/support/theme/hueman/)
 * [Active Topics](https://wordpress.org/support/theme/hueman/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/hueman/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/hueman/reviews/)

## Tags

 * [author](https://wordpress.org/support/topic-tag/author/)
 * [entry title](https://wordpress.org/support/topic-tag/entry-title/)
 * [updated](https://wordpress.org/support/topic-tag/updated/)

 * 1 reply
 * 2 participants
 * Last reply from: [wikiyu](https://wordpress.org/support/users/wikiyu/)
 * Last activity: [12 years, 3 months ago](https://wordpress.org/support/topic/google-strutured-data-tool-errors/#post-4535457)
 * Status: not resolved