【发布时间】:2019-06-29 03:30:26
【问题描述】:
我在尝试让分页在我正在处理的网站的主页上工作时遇到问题。
这是我正在使用的代码,当然是简化的:
这个怎么分页?
<?php $args = array('cat' => '3, 7, 10, 12', 'posts_per_page'=> 3); ?>
<?php query_posts($args); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class="col-md-12">
<a href="<?php the_permalink(); ?>" >
<div class="image"><img class="img-responsive" src="<?php echo the_post_thumbnail_url( 'medium' ); ?>"></div></a>
<div class="entry entry-table">
<div class="title">
<a href="<?php the_permalink(); ?>" ><h3 class="h5"><?php the_title(); ?></h3></a>
<span class="cateogry<?php echo get_the_category( $id )[0]->cat_ID; ?>"><?php echo get_the_category( $id )[0]->name; ?></span>
<p><?php echo get_excerpt(228, 'content'); ?>
<a class="linkmore" href="<?php the_permalink() ?>">Czytaj dalej ...</a>
</p>
</div>
</div>
</article>
<?php endwhile; endif; ?>
【问题讨论】:
标签: php wordpress pagination wordpress-theming