This function is meant to append any links with a filter.
1 2 3 4 5 6 7 8 9 10 11 |
add_filter('wp_list_pages', 'add_bookmarks_to_menu');
function add_bookmarks_to_menu($output) {
$bookmarks = (array) get_bookmarks('hide_invisible=0&category_name=wp_list_pages');
foreach ( $bookmarks as $bookmark ) {
$output .= "
<li><a href='{$bookmark->link_url}' title='{$bookmark->link_name}'>{$bookmark->link_name}</a></li>
\n";
}
return $output;
} |