wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



get_links_withrating › WordPress Function

Od0.71
Przestarzały2.1.0
get_links_withrating ( $category = -1, $before = '', $after = '<br />', $between = " ", $show_images = true, $orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0 )
Parametry: (9)
  • (int) $category Optional. The category to use. If no category supplied, uses all. Default 0.
    Wymagane: Nie
    Domyślny: -1
  • (string) $before Optional. The HTML to output before the link. Default empty.
    Wymagane: Nie
    Domyślny: (puste)
  • (string) $after Optional. The HTML to output after the link. Default '&lt;br /&gt;'.
    Wymagane: Nie
    Domyślny: '<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 ' '.
    Wymagane: Nie
    Domyślny: " "
  • (bool) $show_images Optional. Whether to show images (if defined). Default true.
    Wymagane: Nie
    Domyślny: 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.
    Wymagane: Nie
    Domyślny: 'id'
  • (bool) $show_description Optional. Whether to show the description if show_images=false/not defined. Default true.
    Wymagane: Nie
    Domyślny: true
  • (int) $limit Optional. Limit to X entries. If not specified, all entries are shown. Default -1.
    Wymagane: Nie
    Domyślny: -1
  • (int) $show_updated Optional. Whether to show last updated timestamp. Default 0.
    Wymagane: Nie
    Domyślny:
Zobacz:
Zdefiniowane na:
Codex:

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



Źródło

function get_links_withrating($category = -1, $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_links($category, $before, $after, $between, $show_images, $orderby, $show_description, true, $limit, $show_updated);
}