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



get_the_id › WordPress Function

Seit2.1.0
Veraltetn/v
get_the_id ( Keine Parameter )
Gibt zurück:
  • (int|false) The ID of the current item in the WordPress Loop. False if $post is not set.
Definiert in:
Codex:

Retrieves the ID of the current item in the WordPress Loop.



Quellcode

function get_the_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	$post = get_post();
	return ! empty( $post ) ? $post->ID : false;
}