html - Structued data in a menu -


how add url item props in menu after first li element. cant seem google pick next item props after first menu list.

<li itemtype="http://schema.org/localbusiness" id="main"> <a> home</a>      <ul id=" subnav" =""="">        <li> <a itemprop="url" href="">item 1</a>        </li>        <li><a itemprop="url" href="">item 2</a>        </li>        <li><a itemprop="url" href="">item 3</a>        </li>      </ul>    </li>    <li id="two">      <a>hello</a>      <ul id="subnav1">        <li><a href="">menu 2</a>        </li>        <li><a itemprop="url" href=""> item 4 not being picked up</a>        </li>      </ul>    </li>


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -