websandesign
7/17/2017 - 8:55 PM

WP - Главный цикл

WP - Главный цикл

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
	<h2><?php the_title(); ?></h2>
	<p><?php the_excerpt(); ?></p>
	<p><?php kama_excerpt("maxchar=100"); ?></p>
<?php endwhile; ?>
<?php else: ?>
<?php endif; ?>