函数原型
get_links_list( string $order = ‘name’ )
函数描述
Output entire list of links by category.
是否弃用
Warning: This function has been deprecated. Use wp_list_bookmarks() instead.
函数参数
-
$order
string
Optional - Sort link categories by
'name'or'id'Default:
'name'
函数返回值
无
函数位置
File: wp-includes/deprecated.php.
函数源码
function get_links_list($order = 'name') {
_deprecated_function( __FUNCTION__, '2.1.0', 'wp_list_bookmarks()' );
$order = strtolower($order);
// Handle link category sorting.
$direction = 'ASC';
if ( '_' == substr($order,0,1) ) {
$direction = 'DESC';
$order = substr($order,1);
}
if ( !isset($direction) )
$direction = '';
$cats = get_categories(array('type' => 'link', 'orderby' => $order, 'order' => $direction, 'hierarchical' => 0));
// Display each category.
if ( $cats ) {
foreach ( (array) $cats as $cat ) {
// Handle each category.
// Display the category name.
echo ' <li id="linkcat-' . $cat->term_id . '" class="linkcat"><h2>' . apply_filters('link_category', $cat->name ) . "</h2>\n\t<ul>\n";
// Call get_links() with all the appropriate params.
get_links($cat->term_id, '<li>', "</li>", "\n", true, 'name', false);
// Close the last category.
echo "\n\t</ul>\n</li>\n";
}
}
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.1.0 | Use wp_list_bookmarks() |
| 1.0.1 | Introduced. |

