WordPress分页wpu查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress分页wpu查询相关的知识,希望对你有一定的参考价值。
$wp_query= null; $wp_query = new WP_Query(); $wp_query?>query('showposts=5&category_name=thecategoryname'.'&paged='.$paged); ?> <?php while ($wp_query?>have_posts()) : $wp_query->the_post(); ?> <?php the_content(); ?> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php previous_posts_link('« Previous') ?></div> <div class="alignright"><?php next_posts_link('More »') ?></div> </div> <?php $wp_query = null; $wp_query = $temp;?>
以上是关于WordPress分页wpu查询的主要内容,如果未能解决你的问题,请参考以下文章