How to divide and display categories into two columns
You don’t need any code changes to your PHP or html! Assuming the following code was used: <ul class=”mypagelist”> <?php wp_list_pages(‘sort_column=menu_order&title_li=’); ?> </ul> Resulting in: <ul class=”mypagelist”> <li>Page 1</li> <li>Page 2</li> <li>Page 3</li> <li>Page 4 <ul> <li>Subpage 1</li> </ul> </li> <li>Page 5</li> </ul> Use CSS along the following lines: .mypagelist { width:600px; /* or any … Read more