获取当前分类的方法可以通过 get_query_var('cat');
分页通过get_query_var('paged')
<?php
$cat_query=new WP_Query(array(
'cat' => get_query_var('cat'),
'posts_per_page'=>12,
'paged'=>get_query_var('paged')
'paged'=>get_query_var('paged')
));
?>
<?php
if($cat_query->have_posts()) : while($cat_query->have_posts()) : $cat_query->the_post();
?>
//调用文章对应内容
<?php endwhile;?>//分页参考:http://www.cnblogs.com/tinyphp/p/6361901.html
<?php endif;?>
快捷替换以上红字部分:
快捷替换以上红字部分:
<li><a href="<?php the_permalink();?>"><?php the_title();?></a><span><?php the_time('Y-m-d');?></span></li>
缩略图与文字:
<li><a href="<?php the_permalink();?>"><?php if ( has_post_thumbnail() ) : ?><?php the_post_thumbnail( 'thumbnail' ); ?><?php else: ?>//显示默认图片<?php endif; ?></a><h3><a href="<?php the_permalink();?>"><?php the_title();?></a></h3></li>