I'm adding the schema.org microdata to my website.

My HTML code is like this:

<div itemscope itemtype="http://schema.org/Organization">
<span class="title">Name of the organization</span>
<a href="http://www.ABCCompany.com/">ABC Company</a>
</div>

Since the itemprop "url" and "name" of the organization are all in the anchor tag. How can I indicate the both "url" and "name" itemprop on the same tag? Must I add extra "span" tag for this purpose?

I have tried searching some coding examples on this but cannot find any example to show the use of multiple itemprop on the same tag.

At the end, I want to have microdata like this: url="http://www.ABCCompany.com", name="ABC Company"

Thx!!

link|improve this question

68% accept rate
Knut asked to have his answer deleted as @cygri has provided the correct answer. You might wish to review this and select it if his answer helps. – Will Jul 26 '11 at 12:44
feedback

2 Answers

up vote 8 down vote accepted

You have to do it by nesting two elements. For example, you can nest a <span> inside the <a> and put the itemprop="name" on that:

<div itemscope itemtype="http://schema.org/Organization">
    <a itemprop="url" href="http://www.ABCCompany.com/">
        <span itemprop="name">ABC Company</span>
    </a>
</div>

I find this site handy for testing such things.

link|improve this answer
Is it really legal to nest itemprops like that? Have you seen any examples on that in the spec? The only examples on nested itemprops I have seen is when one of the itemprops is an itemtype and it starts a new itemscope. – knut Jul 24 '11 at 18:16
Yes, of course it is legal. Why wouldn't it be? The algorithm in the spec recurses down into all sub-elements, except if there's an @itemscope on it. – cygri Jul 25 '11 at 10:43
2  
@knut - An itemprop doesn't create a new scope like itemscope does. Each element type (<a>, <span>, etc) determines what part is extracted as the value for an attached itemprop attribute. – David Harkness Jul 26 '11 at 20:59
It seems extra span tag is unavoidable to assign two itemprop from the anchor tag. – LazNiko Jul 27 '11 at 5:08
very handy site indeed! – YuriKolovsky Apr 23 at 10:50
feedback

There may be a problem with google. The "rich snippets testing tool" indicates that when you mark an anchor tag as a url, the body of the tag is used as value rather than the href attribute. But nobody wants to display the url inside an anchor tag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.