wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_linksbyname_withrating › WordPress Function

Seit0.71
Veraltet2.1.0
get_linksbyname_withrating ( $cat_name = "noname", $before = '', $after = '<br />', $between = " ", $show_images = true, $orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0 )
Parameter: (9)
  • (string) $cat_name Optional. The category name to use. If no match is found, uses all. Default &#039;noname&#039;.
    Erforderlich: Nein
    Standard: "noname"
  • (string) $before Optional. The HTML to output before the link. Default empty.
    Erforderlich: Nein
    Standard: (leer)
  • (string) $after Optional. The HTML to output after the link. Default &#039;&lt;br /&gt;&#039;.
    Erforderlich: Nein
    Standard: '<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 &#039; &#039;.
    Erforderlich: Nein
    Standard: " "
  • (bool) $show_images Optional. Whether to show images (if defined). Default true.
    Erforderlich: Nein
    Standard: true
  • (string) $orderby Optional. The order to output the links. E.g. &#039;id&#039;, &#039;name&#039;, &#039;url&#039;, &#039;description&#039;, &#039;rating&#039;, or &#039;owner&#039;. Default &#039;id&#039;. If you start the name with an underscore, the order will be reversed. Specifying &#039;rand&#039; as the order will return links in a random order.
    Erforderlich: Nein
    Standard: 'id'
  • (bool) $show_description Optional. Whether to show the description if show_images=false/not defined. Default true.
    Erforderlich: Nein
    Standard: true
  • (int) $limit Optional. Limit to X entries. If not specified, all entries are shown. Default -1.
    Erforderlich: Nein
    Standard: -1
  • (int) $show_updated Optional. Whether to show last updated timestamp. Default 0.
    Erforderlich: Nein
    Standard:
Siehe:
Definiert in:
Codex:

Gets the links associated with category 'cat_name' and display rating stars/chars.



Quellcode

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