php 代码 怎么写分页
<?php$catid=get_the_category();//通过这个函数可以获得该文章下的分类信息$newcat_id=$catid[3]->cat_ID;//获取...
<?php
$catid = get_the_category(); //通过这个函数可以获得该文章下的分类信息
$newcat_id = $catid[3]->cat_ID; //获取得到该文章下的分类ID
$recent = new WP_Query("cat=1".$newcat_id);
while($recent->have_posts()) : $recent->the_post();
?>
<li><a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; wp_reset_query(); ?>
这段读取文章分类的 php 代码 怎么写分页 展开
$catid = get_the_category(); //通过这个函数可以获得该文章下的分类信息
$newcat_id = $catid[3]->cat_ID; //获取得到该文章下的分类ID
$recent = new WP_Query("cat=1".$newcat_id);
while($recent->have_posts()) : $recent->the_post();
?>
<li><a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; wp_reset_query(); ?>
这段读取文章分类的 php 代码 怎么写分页 展开
展开全部
<?php if(empty($_GET['page'])||$_GET['page']<0){
$page=1;
}else {
$page=$_GET['page'];
}
$offset=10*($page-1);
?>
<?php
$catid = get_the_category(); //通过这个函数可以获得该文章下的分类信息
$newcat_id = $catid[3]->cat_ID; //获取得到该文章下的分类ID
$recent = new WP_Query("cat=1".$newcat_id,$offset,10);
while($recent->have_posts()) : $recent->the_post();
?>
<li><a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; wp_reset_query(); ?>
<a href="<?php echo $_SERVER['PHP_SELF'];?>?page=<?php echo $page-1;?>">上一页</a>
<a href="<?php echo $_SERVER['PHP_SELF'];?>?page=<?php echo $page+1;?>">下一页</a>
思路是这也样子的吧
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询