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



wp_get_single_post › WordPress Function

Seit1.0.0
Veraltet3.5.0
wp_get_single_post ( $postid = 0, $mode = OBJECT )
Parameter: (2)
  • (int) $postid Post ID.
    Erforderlich: Nein
    Standard:
  • (string) $mode How to return result, either OBJECT, ARRAY_N, or ARRAY_A.
    Erforderlich: Nein
    Standard: OBJECT
Siehe:
Gibt zurück:
  • (WP_Post|null) Post object or array holding post contents and information
Definiert in:
Codex:

Retrieve a single post, based on post ID.

Has categories in 'post_category' property or key. Has tags in 'tags_input' property or key.


Quellcode

function wp_get_single_post( $postid = 0, $mode = OBJECT ) {
	_deprecated_function( __FUNCTION__, '3.5.0', 'get_post()' );
	return get_post( $postid, $mode );
}