• Resolved KtownJack

    (@ktownjack)


    Greetings!

    When I run the Google Structured Data Tool, it flags the following error:

    <div class=”breadcrumbs”>
    <div class=”container”>
    <!– Breadcrumb NavXT 5.5.2 –>
    <span typeof=”v:Breadcrumb”><span property=”v:title”>Floor Plans Under 1,000 SF</span></span> </div>
    </div>
    </div>

    It says: A value for the urlfield is required. Please see: https://github.com/Yoast/wordpress-seo/issues/1926

    Thank You

Viewing 1 replies (of 1 total)
  • Plugin Author John Havlik

    (@mtekk)

    How are you calling Breadcrumb NavXT? From the above, it does not appear that you are wrapping the call to bcn_display() with the recommended div. For reference, below is the recommended way to call Breadcrumb NavXT (it generates valid Schema.org BreadcrumbList format breadcrumb trails as long as you use new default breadcrumb templates):

    <div class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/">
        <?php if(function_exists('bcn_display'))
        {
            bcn_display();
        }?>
    </div>

    Also see this article if you’re migrating from an older version of Breadcrumb NavXT: https://mtekk.us/archives/guides/how-to-implement-schema-org-breadcrumblist-with-breadcrumb-navxt/

Viewing 1 replies (of 1 total)

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