Help with wp_list_authors
-
Hi, I am trying to implement a menu item to list authors. The code i came up with works GREAT..only one issue! I have two nav menus registered, Primary and Secondary.
When I add the code to my page, targeting the primary menu, the secondary menu disappears. The box is still there but all the links are gone.
Any ideas why?? here is the code I’m using:
function wps_nav_authors($items, $args){ if( $args->theme_location == 'primary' ) return $items . '<li><a href="#">Authors</a><ul class="sub-menu"><li>' . wp_list_authors('show_fullname=1&optioncount=0&orderby=post_count&order=DESC&number=8&echo=0') . '</li></ul></li>'; } add_filter('wp_nav_menu_items','wps_nav_authors', 10, 2);
Thanks so much for your help!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Help with wp_list_authors’ is closed to new replies.