I use this script to show the wordpress menu
<?php
$argsM = array(
'theme_location' => 'menu-principal',
'items_wrap' => '<ul class="sf-menu nav navbar-nav %2$s">%3$s</ul>',
);
wp_nav_menu( $argsM );
?>
And it gives me a regular menu as
ul
li - home
li - shop
li - contact us
ul
I try to find a way where I can put a div after each li for something similar to this
ul
li - home
div
li - shop
div
li - contact us
div
ul
I want to go this way if it's possible and not with a jQuery solution .append() or something else like that.