Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

if ( $post_armi->have_posts() ) { while ($post_armi->have_posts() ) { $post_armi->the_post();

<?php
if ( have_posts() ) :
	while ( have_posts() ) : the_post();
		// Il codice del ciclo
	endwhile;
else :
	echo wpautop( 'Spiacente, nessun articolo trovato' );
endif;
?>
Source by codex.wordpress.org #
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
9+7 =