wp_get_linksbyname

函数


wp_get_linksbyname ( $category, $args = '' )
参数
  • (string)
    $category
    The category to use.
    Required:
  • (string)
    $args
    Required:
    Default: (empty)
返回值
  • (string|null)
相关
  • wp_list_bookmarks()
定义位置
  • wp-includes/deprecated.php
    , line 424
引入
1.0.1
弃用
2.1.0

获取与命名的类别相关的链接。

function wp_get_linksbyname($category, $args = '') {
	_deprecated_function(__FUNCTION__, '2.1.0', 'wp_list_bookmarks()');

	$defaults = array(
		'after' => '
', 'before' => '', 'categorize' => 0, 'category_after' => '', 'category_before' => '', 'category_name' => $category, 'show_description' => 1, 'title_li' => '', ); $parsed_args = wp_parse_args( $args, $defaults ); return wp_list_bookmarks($parsed_args); }