Codex tools: Log in / create account
This function has been deprecated. That means it has been replaced by a new function or is no longer supported, and may be removed from future versions. All code that uses this function should be converted to use its replacement if one exists.
Contents |
Displays a nested HTML unordered list of all links as defined in the Links Manager, sorted under Link Category headings. Note: the Link Category headings are automatically generated inside of <h2> headings.
Note: This tag does not respect the "Before Link", "Between Link and Description", and "After Link" settings defined for Link Categories in the Links Manager, Formatting (but respect Category Options, Show, Description). To get around this feature/limitation, see Example 2 from wp_get_links().
<?php get_links_list('order'); ?>
Display links sorted by Link Category ID.
<?php get_links_list('id'); ?>
Automatically generates the <li> with an ID of the Link Category wrapped in an <h2> heading. It looks like this (links edited for space):
<li id="linkcat-1"><h2>Blogroll</h2>
<ul>
<li><a href="http://example1.com/">Blogroll Link 1</a></li>
<li><a href="http://example2.com/">Blogroll Link 2</a></li>
<li><a href="http://example3.com/">Blogroll Link 3</a></li>
</ul>
</li>
get_links_list, wp_get_links, get_links, wp_get_linksbyname, get_linksbyname, wp_list_bookmarks, get_bookmarks, get_bookmark