Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

User:Bastho

Description

Itére l'index d'article dans The Loop. Récupère l'article suivant, intialise l'article, défini la propriété 'in the loop' (dans la boucle) sur vrai.

Usage

<?php the_post(); ?>

Paramètres

Cette fonction n'accepte aucun paramètres.

Valeurs retournées

Cette fonction n'a aucune valeur de retour.

Exemples

<?php
while ( have_posts() ) : the_post();
	echo '<h2>';
	the_title();
	echo '</h2>';
	the_content();
endwhile;
?>

Notes

Notes de version

Fichier Source

the_post() est situé dans wp-includes/query.php.

Contenu lié

Articles

Code Documentation

See also index of Function Reference and index of Template Tags.