How if I have two URLS for a book? One for the author and one for the title book. Is it correct something like this? <div itemscope itemtype="http://schema.org/Book"> <a itemprop="url" href="http://www.example.com/The_Count_of_Monte_Cristo"><span itemprop="name">The Count of Monte Cristo</span></a> by <a itemprop="url" href="http://www.example.com/Dumas"><span itemprop="author">Dumas</span></a>. </div>
On Sat, Jul 16, 2011 at 16:49, jreyest <jrey...@gmail.com> wrote: > How if I have two URLS for a book? One for the author and one for the title > book. Is it correct something like this? > <div itemscope itemtype="http://schema.org/Book"> > <a itemprop="url" > href="http://www.example.com/The_Count_of_Monte_Cristo"><span > itemprop="name">The Count of Monte Cristo</span></a> by > <a itemprop="url" > href="http://www.example.com/Dumas"><span itemprop="author">Dumas</span></a>. > </div>
In this particular example what you really wanted was 1 URL for the book and 1 URL for the author, right? This should work:
Philip Jägenstedt wrote:
> On Sat, Jul 16, 2011 at 16:49, jreyest <jrey...@gmail.com> wrote:
> > How if I have two URLS for a book? One for the author and one for the title
> > book. Is it correct something like this?
> > <div itemscope itemtype="http://schema.org/Book">
> > <a itemprop="url"
> > href="http://www.example.com/The_Count_of_Monte_Cristo"><span
> > itemprop="name">The Count of Monte Cristo</span></a> by
> > <a itemprop="url"
> > href="http://www.example.com/Dumas"><span itemprop="author">Dumas</span></a>.
> > </div>
> In this particular example what you really wanted was 1 URL for the
> book and 1 URL for the author, right? This should work:
On Wed, Jul 27, 2011 at 13:59, David Beaumont <dbeaum...@google.com> wrote: > Philip Jägenstedt wrote: >> On Sat, Jul 16, 2011 at 16:49, jreyest <jrey...@gmail.com> wrote: >> > How if I have two URLS for a book? One for the author and one for the title >> > book. Is it correct something like this? >> > <div itemscope itemtype="http://schema.org/Book"> >> > <a itemprop="url" >> > href="http://www.example.com/The_Count_of_Monte_Cristo"><span >> > itemprop="name">The Count of Monte Cristo</span></a> by >> > <a itemprop="url" >> > href="http://www.example.com/Dumas"><span itemprop="author">Dumas</span></a>. >> > </div>
>> In this particular example what you really wanted was 1 URL for the >> book and 1 URL for the author, right? This should work:
> Philip Jägenstedt wrote: > > On Sat, Jul 16, 2011 at 16:49, jreyest <jrey...@gmail.com> wrote: > > > How if I have two URLS for a book? One for the author and one for the title > > > book. Is it correct something like this? > > > <div itemscope itemtype="http://schema.org/Book"> > > > <a itemprop="url" > > > href="http://www.example.com/The_Count_of_Monte_Cristo"><span > > > itemprop="name">The Count of Monte Cristo</span></a> by > > > <a itemprop="url" > > > href="http://www.example.com/Dumas"><span itemprop="author">Dumas</span></a>. > > > </div>
> > In this particular example what you really wanted was 1 URL for the > > book and 1 URL for the author, right? This should work: