str_replace on wp_list_pages
-
I am trying to modify a theme file I have to replaces spaces with ? like so….
$menu = wp_list_pages('title_li=&sort_column=menu_order&echo=0 '); // Params for the page list in header.php $menu = str_replace(array("\r", "\n", "\t"), '', $menu); echo str_replace(' ', 'nbsp;', $menu);
however not having much luck
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘str_replace on wp_list_pages’ is closed to new replies.