Would that be possible to have the functions wp_list_pages and wp_page_menu with an option to display pages in a "flat" format like the functions wp_list_bookmarks or wp_tag_cloud or wp_get_archives?
Would that be possible to have the functions wp_list_pages and wp_page_menu with an option to display pages in a "flat" format like the functions wp_list_bookmarks or wp_tag_cloud or wp_get_archives?
I am doing it thru CSS :
<div id="my_own_style">
<?php wp_page_menu('sort_column=menu_order&include=5,11&title_li=&show_home=0'); ?>
CSS :
#my_own_style ul li {
list-style: none;
}
Hope it will help.
MP
---------------------
http://www.KurzyPotapania.sk
Hi palkovic,
I do the same for general list items in my own WP theme:
li, ol, ul {
list-style:none;
}
This question i raised is for WP developers to add to the listed functions additional controls/arguments so it would be easier, cleaner and more aesthetical to manage this widget plug-ins.
You must log in to post.