示例#1
0
						<?php 
    /* Start the Loop */
    while (have_posts()) {
        the_post();
        /*
         * Include the post format-specific template for the content. If you want to
         * this in a child theme then include a file called called content-___.php
         * (where ___ is the post format) and that will be used instead.
         */
        get_template_part('content', get_post_format());
    }
    ?>
						
						<div class="pagination">
							<?php 
    Chairman::chairman_pagination();
    ?>
						</div>
						
					<?php 
} else {
    ?>
						<?php 
    get_template_part('content', 'none');
    ?>
					<?php 
}
?>
				</div>
			</div>
			<?php