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



the_post › WordPress Function

Seit1.5.0
Veraltetn/v
the_post ( Keine Parameter )
Definiert in:
Codex:

Iterate the post index in the loop.



Quellcode

function the_post() {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		return;
	}

	$wp_query->the_post();
}