wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_linkobjects › WordPress Function

Da1.0.1
Deprecato2.1.0
get_linkobjects ( $category = 0, $orderby = 'name', $limit = 0 )
Parametri: (3)
  • (int) $category Optional. The category to use. If no category supplied, uses all. Default 0.
    Richiesto: No
    Default:
  • (string) $orderby Optional. The order to output the links. E.g. 'id', 'name', 'url', 'description', 'rating', or 'owner'. Default 'name'. 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.
    Richiesto: No
    Default: 'name'
  • (int) $limit Optional. Limit to X entries. If not specified, all entries are shown. Default 0.
    Richiesto: No
    Default:
Vedi:
Ritorna:
  • (array)
Definito a:
Codex:

Gets an array of link objects associated with category n.

Usage: $links = get_linkobjects(1); if ($links) { foreach ($links as $link) { echo '
  • '.$link->link_name.'
    '.$link->link_description.'
  • '; } } Fields are: - link_id - link_url - link_name - link_image - link_target - link_category - link_description - link_visible - link_owner - link_rating - link_updated - link_rel - link_notes


    Sorgenti

    function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) {
    	_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' );
    
    	$links = get_bookmarks( array( 'category' => $category, 'orderby' => $orderby, 'limit' => $limit ) ) ;
    
    	$links_array = array();
    	foreach ($links as $link)
    		$links_array[] = $link;
    
    	return $links_array;
    }