wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
get_linkobjectsbyname is deprecated since version 2.1.0!
Alternative: get_bookmarks()
Alternative: get_bookmarks()
get_linkobjectsbyname › WordPress Function
Seit1.0.1
Veraltet2.1.0
› get_linkobjectsbyname ( $cat_name = "noname", $orderby = 'name', $limit = -1 )
| Parameter: (3) |
|
| Siehe: | |
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Gets an array of link objects associated with category $cat_name.
$links = get_linkobjectsbyname( 'fred' ); foreach ( $links as $link ) { echo 'Ähnliche Funktionen: get_linkobjects, get_linksbyname, get_linkcatname, wp_get_linksbyname, get_object_subtype
Quellcode
function get_linkobjectsbyname($cat_name = "noname" , $orderby = 'name', $limit = -1) {
_deprecated_function( __FUNCTION__, '2.1.0', '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);
}