tags:

views:

64

answers:

1

I have the following code to display all pages into a nav bar in Wordpress

<ul>
<?php wp_list_pages('title_li='); ?>
</ul>

Trying to figure out how to add a div class to each li?

A: 

You should be able to use link_before and link_after:

<ul>
<?php wp_list_pages('title_li=&link_before=<div class="myClass">&link_after=</div>'); ?>
</ul>

There's a section on styling the <li>s in the documentation.

Greg