wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



the_post › WordPress Function

Da1.5.0
Deprecaton/a
the_post ( Nessun parametro )
Definito a:
Codex:

Iterate the post index in the loop.



Sorgenti

function the_post() {
	global $wp_query;

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

	$wp_query->the_post();
}