get_links_list

函式
get_links_list ( $order = 'name' )
引數
  • (string) $order Sort link categories by 'name' or 'id'
    Required:
    Default: 'name'
相關
  • wp_list_bookmarks()
定義位置
相關方法
get_linksget_blog_listget_linkget_links_withratingwp_get_links
引入
1.0.1
棄用
2.1.0

get_links_list: 這個函式用來檢索網站上所有連結的HTML列表。

按類別輸出整個連結列表。

使用$wpdb->linkcategories中的設定,按類別輸出所有連結的列表,並作為巢狀的HTML無序列表輸出。

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>nt<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 "nt</ul>n</li>n";
		}
	}
}

常見問題

FAQs
檢視更多 >