get_linksbyname()
Устарела с версии 2.1.0. Больше не поддерживается и может быть удалена. Используйте get_bookmarks().
Gets the links associated with category $cat_name.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
get_linksbyname( $cat_name, $before, $after, $between, $show_images, $orderby, $show_description, $show_rating, $limit, $show_updated );
- $cat_name(строка)
- The category name to use. If no match is found, uses all.
По умолчанию:'noname' - $before(строка)
- The HTML to output before the link.
По умолчанию:'' - $after(строка)
- The HTML to output after the link.
По умолчанию:'<br />' - $between(строка)
- The HTML to output between the link/image and its description. Not used if no image or
$show_imagesis true.
По умолчанию:' ' - $show_images(true|false)
- Whether to show images (if defined).
По умолчанию:true - $orderby(строка)
- The order to output the links. E.g.
'id','name','url','description','rating', or'owner'. If you start the name with an underscore, the order will be reversed. Specifying'rand'as the order will return links in a random order.
По умолчанию:'id' - $show_description(true|false)
- Whether to show the description if show_images=false/not defined.
По умолчанию:true - $show_rating(true|false)
- Show rating stars/chars.
По умолчанию:false - $limit(int)
- Limit to X entries. If not specified, all entries are shown.
По умолчанию:-1 - $show_updated(int)
- Whether to show last updated timestamp.
Заметки
- Смотрите: get_bookmarks()
Список изменений
| С версии 0.71 | Введена. |
| Устарела с 2.1.0 | Use get_bookmarks() |
Код get_linksbyname() get linksbyname WP 7.0.4
function get_linksbyname($cat_name = "noname", $before = '', $after = '<br />', $between = " ", $show_images = true, $orderby = 'id',
$show_description = true, $show_rating = false,
$limit = -1, $show_updated = 0) {
_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' );
$cat_id = -1;
$cat = get_term_by('name', $cat_name, 'link_category');
if ( $cat )
$cat_id = $cat->term_id;
get_links($cat_id, $before, $after, $between, $show_images, $orderby, $show_description, $show_rating, $limit, $show_updated);
}