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



get_link › WordPress Function

Seit2.0.0
Veraltet2.1.0
get_link ( $bookmark_id, $output = OBJECT, $filter = 'raw' )
Parameter: (3)
  • (int) $bookmark_id ID of link
    Erforderlich: Ja
  • (string) $output Optional. Type of output. Accepts OBJECT, ARRAY_N, or ARRAY_A. Default OBJECT.
    Erforderlich: Nein
    Standard: OBJECT
  • (string) $filter Optional. How to filter the link for output. Accepts 'raw', 'edit', 'attribute', 'js', 'db', or 'display'. Default 'raw'.
    Erforderlich: Nein
    Standard: 'raw'
Siehe:
Gibt zurück:
  • (object|array) Bookmark object or array, depending on the type specified by `$output`.
Definiert in:
Codex:

Retrieves bookmark data based on ID.



Quellcode

function get_link( $bookmark_id, $output = OBJECT, $filter = 'raw' ) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmark()' );
	return get_bookmark($bookmark_id, $output, $filter);
}