代码拉取完成,页面将自动刷新
<?php
/*
* Template Name: news
*/
?>
<?php
get_header();
?>
<div class="page2 news">
<div class="wrap clearfix">
<div class="new-list">
<ul class="clearfix">
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$posts_per_page = 8;
$my_query = new WP_Query('cat='.get_query_var('cat') ."&posts_per_page=-1");
$args = array(
'caller_get_posts' => 1,
'cat' => get_query_var('cat'),
'paged' => $paged,
'posts_per_page' => $posts_per_page
);
query_posts($args);
while ( have_posts()) {
the_post();
?>
<li class="new-item">
<a href="<?php echo home_url('index.php/content?cat='.$post->ID); ?>" class="link-wrap">
<span class="new-title"><?php the_title(); ?></span>
<span class="date"><?php the_time('Y-m-j'); ?></span>
</a>
</li>
<?php } ?>
</ul>
</div>
<div class="page">
<?php
pagination('cat='.get_query_var('cat'));
?>
<div class="status">
总共 <em><?php echo $my_query->post_count;?></em> 条记录
当前是第 <em><?php echo $paged; ?></em> 页
</div>
</div>
</div>
</div>
<?php
get_footer();
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。