示例#1
0
文件: index.php 项目: Patreo/yonk
Yonk_Frontend::query('post', array('orderby' => 'title', 'order' => 'DESC'), function () {
    ?>
		<article id="post-<?php 
    the_ID();
    ?>
" <?php 
    post_class();
    ?>
>
			<div class="row">
				<div class="col-lg-3">
					<?php 
    if (has_post_thumbnail()) {
        the_post_thumbnail();
    }
    ?>
				</div>
				 <div class="col-lg-9">
					 <h3><a href="<?php 
    the_permalink();
    ?>
"><?php 
    the_title();
    ?>
</a></h3>
					 <p class="date"><?php 
    the_date();
    ?>
</p>
					 <?php 
    the_excerpt();
    ?>
				 </div>
			</div>
		</article>
<?php 
});