The Moz Q&A Forum

    • Forum
    • Questions
    • My Q&A
    • Users
    • Ask the Community

    Welcome to the Q&A Forum

    Browse the forum for helpful insights and fresh discussions about all things SEO.

    1. SEO and Digital Marketing Q&A Forum
    2. Categories
    3. Intermediate & Advanced SEO
    4. Do Structured Data Errors Hurt Your Rankings

    Do Structured Data Errors Hurt Your Rankings

    Intermediate & Advanced SEO
    8 3 1.7k
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as question
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • KempRugeLawGroup
      KempRugeLawGroup last edited by

      Hi,

      I noticed we had a 161 structured data erros. Almost all of them said "Update missing." I included screenshorts. Are these hurting me? If so, what can I do to fix them?

      Thanks,

      Ruben

      UfzeAFi YjLhimj

      1 Reply Last reply Reply Quote 0
      • Andy.Drinkwater
        Andy.Drinkwater last edited by

        I assume your site is running Wordpress Ruben? This is quite common - you should be able to find your fix here. Snippets do cause a lot of problems, especially when plugins are in use. See how you get on with that.

        This error occur when Google Snippet cannot find date it was published or last updated.To solve this find,**<span < code="">class="post_date">`'j F,Y'); ?></span <>`** and replace it with<span < code="">class="post_date date updated">`'j F,Y'); ?>``</span <>```

        -Andy

        spencerhjustice 1 Reply Last reply Reply Quote 1
        • spencerhjustice
          spencerhjustice @Andy.Drinkwater last edited by

          Yeah, I actually just noticed that I had this issue as well. You just need to add "updated" as a class so the html for the date on your http://www.kempruge.com/suv-driving-tips/ blog should end up as:

          June 19, 2014

          1 Reply Last reply Reply Quote 1
          • KempRugeLawGroup
            KempRugeLawGroup last edited by

            It is a wordpress site, and I get the fix. However, how do I replace it? I included a screenshot of all the different choices under editor, but I'm having trouble finding it. I thought it would be under post.php, but it's not there. Any ideas?

            Thanks so much for the help!

            • Ruben

            ASTPPfA

            spencerhjustice 1 Reply Last reply Reply Quote 0
            • spencerhjustice
              spencerhjustice @KempRugeLawGroup last edited by

              It's probably in content.php or functions.php which are located in the theme folder of your wordpress installation and are probably only accessible via ftp.

              KempRugeLawGroup 1 Reply Last reply Reply Quote 1
              • KempRugeLawGroup
                KempRugeLawGroup @spencerhjustice last edited by

                I found the functions.php file, but not the content.php. I didn't see the code mentioned in the functions.php file, but could it be under another name in here?

                Thanks,

                Ruben

                // See more at: http://techstudio.co/wordpress/loading-the-latest-version-of-jquery-in-wordpress#sthash.UWbVtIec.dpuf
                // This theme uses wp_nav_menu() in one location.
                register_nav_menus( array(
                'primary' => __( 'Primary Navigation', 'twentyten' ),
                ) );
                // This theme uses post thumbnails
                add_theme_support( 'post-thumbnails' );
                // resize images
                function mf_resize($c,$w="",$h="") {
                echo "/wp-content/plugins/magic-fields/thirdparty/phpthumbail/phpThumb.php?src=$c&w=$w&h=$h&zc=1";
                //echo bloginfo('url')."/wp-content/plugins/magic-fields/thirdparty/phpthumb/phpThumb.php?src=$c&w=$w&h=$h&zc=1";
                }
                // insert meta data
                function insert_meta($id,$meta=array(),$panel_id=0) {
                if($panel_id>0) {
                $meta2=array('_mf_write_panel_id' => $panel_id,'_edit_lock' => "1289904643",'_edit_last' => 1);
                $meta=array_merge($meta,$meta2);
                }
                foreach($meta as $key=>$m) {
                update_post_meta($id,$key,$m);/echo $id." ".$key." ".$m."
                ";
                /
                }
                }
                // widget ready
                if ( function_exists('register_sidebar') )
                register_sidebar();
                // remove html valid. error
                add_action('init', 'remheadlink');
                function remheadlink() {
                remove_action('wp_head', 'rsd_link');
                remove_action('wp_head', 'wlwmanifest_link');
                }
                /* Exclude Category from Main Page and RSS Feeds. 5 6 - categs ; 4 - posts array */
                function myFilter($query) {
                if ($query->is_feed || $query->is_home) {
                //$query->set('cat','-5,-6');
                //$query->set('post__not_in',array(4));
                }

                return $query;
                }
                add_filter('pre_get_posts','myFilter');

                if ( ! function_exists( 'twentyten_posted_on' ) ) :
                /**

                • Prints HTML with meta information for the current post-date/time and author.
                • @since Twenty Ten 1.0
                  */
                  function twentyten_posted_on() {
                  printf( ( 'Posted on %2$s by %3$s', 'twentyten' ),
                  'meta-prep meta-prep-author',
                  sprintf( '%3$s',
                  get_permalink(),
                  esc_attr( get_the_time() ),
                  get_the_date()
                  ),
                  sprintf( '%3$s',
                  get_author_posts_url( get_the_author_meta( 'ID' ) ),
                  sprintf( esc_attr
                  ( 'View all posts by %s', 'twentyten' ), get_the_author() ),
                  get_the_author()
                  )
                  );
                  }
                  endif;

                /**

                • Get Grandparent ID Of Current Page
                • @author Bainternet
                • @reference http://wordpress.stackexchange.com/questions/11665/identify-that-a-page-is-a-grandchild-page
                • @param $page_id
                • @return bool
                  */

                function get_grandpapa($page_id){
                $current_page = get_page( $page_id );
                if ($current_page->post_parent > 0){
                //has at least a parent
                $parent_page = get_page($current_page->post_parent);
                if ($parent_page->post_parent > 0){
                return $parent_page->post_parent;
                }else{
                return false;
                }
                }
                return false;
                }

                remove_action('wp_head', 'wp_print_scripts');
                remove_action('wp_head', 'wp_print_head_scripts', 9);
                remove_action('wp_head', 'wp_enqueue_scripts', 1);
                add_action('wp_footer', 'wp_print_scripts', 5);
                add_action('wp_footer', 'wp_enqueue_scripts', 5);
                add_action('wp_footer', 'wp_print_head_scripts', 5);

                spencerhjustice 1 Reply Last reply Reply Quote 0
                • spencerhjustice
                  spencerhjustice @KempRugeLawGroup last edited by

                  Ok, this should fix your problem. Just add the "updated" that is bolded below. That portion of the code will look like this:

                  %3$s

                  /**

                  • Prints HTML with meta information for the current post-date/time and author.
                  • @since Twenty Ten 1.0
                    */
                    function twentyten_posted_on() {
                    printf( ( 'Posted on %2$s by %3$s', 'twentyten' ),
                    'meta-prep meta-prep-author',
                    sprintf( '%3$s',
                    get_permalink(),
                    esc_attr( get_the_time() ),
                    get_the_date()
                    ),
                    sprintf( '%3$s',
                    get_author_posts_url( get_the_author_meta( 'ID' ) ),
                    sprintf( esc_attr
                    ( 'View all posts by %s', 'twentyten' ), get_the_author() ),
                    get_the_author()
                    )
                    );
                    }
                    endif;
                  KempRugeLawGroup 1 Reply Last reply Reply Quote 1
                  • KempRugeLawGroup
                    KempRugeLawGroup @spencerhjustice last edited by

                    Thank you so much! You're amazing!

                    1 Reply Last reply Reply Quote 0
                    • 1 / 1
                    • First post
                      Last post
                    • Regarding SEO Structured Data
                      Rajesh.Prajapati
                      Rajesh.Prajapati
                      1
                      4
                      62

                    • Did We Implement Structured Data Correctly?
                      LindsayE
                      LindsayE
                      0
                      9
                      318

                    • Does integration of external supplemenatry data help or hurt regarding googles perception of content quality? (e.g weather info, climate table, population info, currency exchange data via API or open source databases)
                      lcourse
                      lcourse
                      0
                      5
                      49

                    • Is site page structure hurting its chances to rank?
                      EricaMcGillivray
                      EricaMcGillivray
                      0
                      4
                      58

                    • Structured Data Questions
                      EcommerceSite
                      EcommerceSite
                      0
                      2
                      150

                    • Website Structured data in Google
                      Christy-Correll
                      Christy-Correll
                      0
                      3
                      103

                    • Google's Structured Data Testing Tool? No Data
                      MichaelC-15022
                      MichaelC-15022
                      0
                      5
                      1.7k

                    • Ranking Ranking Factors!
                      Cyrus-Shepard
                      Cyrus-Shepard
                      0
                      3
                      1.4k

                    Get started with Moz Pro!

                    Unlock the power of advanced SEO tools and data-driven insights.

                    Start my free trial
                    Products
                    • Moz Pro
                    • Moz Local
                    • Moz API
                    • Moz Data
                    • STAT
                    • Product Updates
                    Moz Solutions
                    • SMB Solutions
                    • Agency Solutions
                    • Enterprise Solutions
                    • Digital Marketers
                    Free SEO Tools
                    • Domain Authority Checker
                    • Link Explorer
                    • Keyword Explorer
                    • Competitive Research
                    • Brand Authority Checker
                    • Local Citation Checker
                    • MozBar Extension
                    • MozCast
                    Resources
                    • Blog
                    • SEO Learning Center
                    • Help Hub
                    • Beginner's Guide to SEO
                    • How-to Guides
                    • Moz Academy
                    • API Docs
                    About Moz
                    • About
                    • Team
                    • Careers
                    • Contact
                    Why Moz
                    • Case Studies
                    • Testimonials
                    Get Involved
                    • Become an Affiliate
                    • MozCon
                    • Webinars
                    • Practical Marketer Series
                    • MozPod
                    Connect with us

                    Contact the Help team

                    Join our newsletter
                    Moz logo
                    © 2021 - 2026 SEOMoz, Inc., a Ziff Davis company. All rights reserved. Moz is a registered trademark of SEOMoz, Inc.
                    • Accessibility
                    • Terms of Use
                    • Privacy