wpseek.com
A WordPress-centric search engine for devs and theme authors



the_post › WordPress Function

Since1.5.0
Deprecatedn/a
the_post ( No parameters )
Defined at:
Codex:

Iterate the post index in the loop.



Source

function the_post() {
	global $wp_query;

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

	$wp_query->the_post();
}