Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




get_linkobjectsbyname [ WordPress Function ]

get_linkobjectsbyname ( $cat_name = "noname", $orderby = 'name', $limit = -1 )
Parameters:
  • (string) $cat_name The category name to use. If no match is found uses all.
  • (string) $orderby The order to output the links. E.g. 'id', 'name', 'url', 'description', or 'rating'. Or maybe owner. If you start the name with an underscore the order will be reversed. You can also specify 'rand' as the order which will return links in a random order.
  • (int) $limit Limit to X entries. If not specified, all entries are shown.
See:
Returns:
  • (unknown)
Defined at:



Gets an array of link objects associated with category $cat_name.

 $links = get_linkobjectsbyname('fred');
    foreach ($links as $link) {
        echo '
  • '.$link->link_name.'
  • '; }

    Source

    
    <?php
    function get_linkobjectsbyname($cat_name "noname" $orderby 'name'$limit = -1) {
        
    _deprecated_function__FUNCTION__'2.1''get_bookmarks()' );

        
    $cat_id = -1;
        
    $cat get_term_by('name'$cat_name'link_category');
        if ( 
    $cat )
            
    $cat_id $cat->term_id;

        return 
    get_linkobjects($cat_id$orderby$limit);
    }
    ?>

    Examples [ wp-snippets.com ]

    Google Arama Sonuçlarý

    Dahasý ...

    Kullanýcý Tartýþmalarý [ wordpress.org ]

    - Bulunamadý -

    Yeni bir konu yaz ...

    0 User Note(s)

    Henüz yok. Ýlk sen ol!

    Yeni Ekle ...



    HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics