Example #1
0
		<?php 
do_action('the_sniplet_place', 'guangzhou/after header');
?>

		<div id="content">
		<?php 
if (have_posts()) {
    $x = 0;
    ?>
			<div class="latest">
				<?php 
    while (have_posts()) {
        the_post();
        ?>
					<?php 
        GZ::post_latest($post);
        ?>
				<?php 
        $x++;
        if ($x == GZ::latest()) {
            break;
        }
    }
    ?>
			</div>
		<?php 
}
?>

		<?php 
do_action('the_sniplet_place', 'guangzhou/after lead');