wp_get_links

函数
wp_get_links ( $args = '' )
参数
  • (string) $args a query string
    Required:
    Default: (empty)
返回值
  • (null|string)
相关
  • wp_list_bookmarks()
定义位置
相关方法
get_linkswp_get_link_catsget_linkwp_get_linksbynamewp_get_shortlink
引入
1.0.1
弃用
2.1.0

wp_get_links: 这个函数检索链接。它接收一个可选的参数数组,如要检索的类别或ID,并返回一个链接对象数组。

获得与类别相关的链接。

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

	if ( strpos( $args, '=' ) === false ) {
		$cat_id = $args;
		$args = add_query_arg( 'category', $cat_id, $args );
	}

	$defaults = array(
		'after' => '<br />',
		'before' => '',
		'between' => ' ',
		'categorize' => 0,
		'category' => '',
		'echo' => true,
		'limit' => -1,
		'orderby' => 'name',
		'show_description' => true,
		'show_images' => true,
		'show_rating' => false,
		'show_updated' => true,
		'title_li' => '',
	);

	$parsed_args = wp_parse_args( $args, $defaults );

	return wp_list_bookmarks($parsed_args);
}

常见问题

FAQs
查看更多 >