I want to change every ul,li tags into div tags of wordpress header.wp_nav_menu() is always returns ul ,li.This is I want to change.
<ul>
<li>Home</li>
<li>Services</li>
<li>Products</li>
</ul>
This must be change like this.
<div>
<div>Home</div>
<div>Services</div>
<div>Products</div>
</div>
Please help me.
Thanks.
You need a custom walker to do that, an modified version of this one answered by toscho, just paste this class in your
functions.php
call
wp_nav_menu
inheader.php
like following