get_linksbyname_withrating

函式
get_linksbyname_withrating ( $cat_name = "noname", $before = '', $after = '<br />', $between = " ", $show_images = true, $orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0 )
引數
  • (string) $cat_name Optional. The category name to use. If no match is found, uses all. Default 'noname'.
    Required:
    Default: "noname"
  • (string) $before Optional. The HTML to output before the link. Default empty.
    Required:
    Default: (empty)
  • (string) $after Optional. The HTML to output after the link. Default '<br />'.
    Required:
    Default: '<br />'
  • (string) $between Optional. The HTML to output between the link/image and its description. Not used if no image or $show_images is true. Default ' '.
    Required:
    Default: " "
  • (bool) $show_images Optional. Whether to show images (if defined). Default true.
    Required:
    Default: true
  • (string) $orderby Optional. The order to output the links. E.g. 'id', 'name', 'url', 'description', 'rating', or 'owner'. Default 'id'. 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.
    Required:
    Default: 'id'
  • (bool) $show_description Optional. Whether to show the description if show_images=false/not defined. Default true.
    Required:
    Default: true
  • (int) $limit Optional. Limit to X entries. If not specified, all entries are shown. Default -1.
    Required:
    Default: -1
  • (int) $show_updated Optional. Whether to show last updated timestamp. Default 0.
    Required:
相關
  • get_bookmarks()
定義位置
相關方法
get_links_withratingget_linksbynameget_linkratingwp_get_linksbynameget_linkobjectsbyname
引入
0.71
棄用
2.1.0

get_linksbyname_withrating函式用於檢索基於連結名稱及其評級的連結列表: 這個函式可以用來檢索符合特定標準的連結。

獲取與類別’cat_name’相關的連結,並顯示評級星星/字元。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function get_linksbyname_withrating($cat_name = "noname", $before = '', $after = '<br />', $between = " ",
$show_images = true, $orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0) {
_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' );
get_linksbyname($cat_name, $before, $after, $between, $show_images, $orderby, $show_description, true, $limit, $show_updated);
}
function get_linksbyname_withrating($cat_name = "noname", $before = '', $after = '<br />', $between = " ", $show_images = true, $orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0) { _deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' ); get_linksbyname($cat_name, $before, $after, $between, $show_images, $orderby, $show_description, true, $limit, $show_updated); }
function get_linksbyname_withrating($cat_name = "noname", $before = '', $after = '<br />', $between = " ",
									$show_images = true, $orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' );

	get_linksbyname($cat_name, $before, $after, $between, $show_images, $orderby, $show_description, true, $limit, $show_updated);
}

常見問題

FAQs
檢視更多 >