List pages
-
I have the following code in my header:
<?php add_filter('wp_list_pages','remove_title'); function remove_title($content) { $content = preg_replace('/title=\"(.*?)\"/','',$content); return $content; } wp_list_pages('title_li=&sort_order=ASC&sort_column=menu_order'); ?>How do allow for certain pages to be listed and not others?
ie. – sitemap, terms, and privacy pages i do not want in my main menuthanks in advance
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘List pages’ is closed to new replies.