返回介绍

get_linksbyname()

发布于 2017-09-10 23:30:18 字数 3665 浏览 890 评论 0 收藏 0

Warning: This function has been deprecated. Use get_bookmarks() instead.

get_linksbyname( string $cat_name = "noname",  string $before = '',  string $after = '<br />',  string $between = " ",  bool $show_images = true,  string $orderby = 'id',  bool $show_description = true,  bool $show_rating = false,  int $limit = -1,  int $show_updated )

Gets the links associated with category $cat_name.


description


参数

$cat_name

(string) (Optional) The category name to use. If no match is found uses all.

Default value: "noname"

$before

(string) (Optional) The html to output before the link.

Default value: ''

$after

(string) (Optional) The html to output after the link.

Default value: '<br />'

$between

(string) (Optional) The html to output between the link/image and its description. Not used if no image or $show_images is true.

Default value: " "

$show_images

(bool) (Optional) Whether to show images (if defined).

Default value: true

$orderby

(string) (Optional) The order to output the links. E.g. 'id', 'name', 'url', 'description' or 'rating'. Or maybe owner. If you start the name with an underscore the order will be reversed. You can also specify 'rand' as the order which will return links in a random order.

Default value: 'id'

$show_description

(bool) (Optional) Whether to show the description if show_images=false/not defined.

Default value: true

$show_rating

(bool) (Optional) Show rating stars/chars.

Default value: false

$limit

(int) (Optional) Limit to X entries. If not specified, all entries are shown.

Default value: -1

$show_updated

(int) (Optional) Whether to show last updated timestamp


源代码

File: wp-includes/deprecated.php

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);
}

更新日志

Versiondescription
2.1.0Use get_bookmarks()
0.71Introduced.

相关函数

Uses

  • wp-includes/deprecated.php: get_links()
  • wp-includes/functions.php: _deprecated_function()
  • wp-includes/taxonomy.php: get_term_by()

Used By

  • wp-includes/deprecated.php: get_linksbyname_withrating()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文