使用瞬时API实现WP查询中的分页

时间:2012-07-20 作者:Ronin

我已经将WordPress瞬态系统与w3 total cache集成。现在我无法对此查询进行分页。

<?php
  $paged1 = (get_query_var(\'paged1\')) ? get_query_var(\'paged1\') : 1;
  $recent1 = get_transient( \'recent1\' );
  if ( false === $recent1) {
    $recent1 = new WP_Query (\'cat=3&posts_per_page=5\'.\'&paged=\'.$paged1);
     set_transient(\'recent1\', $recent1, 60*60);
  }
  // do normal loop stuff
  if ($recent1->have_posts()) : while ($recent1->have_posts()) : $recent1->the_post();
?>
<div id="line">
  <a href="<?php the_permalink () ?>" rel="bookmark">
    <h2><?php the_title (); ?></h2>
    <?php the_post_thumbnail(array(100,100), array(\'class\' => \'alignleft\')); ?>
    <?php the_advanced_excerpt(); ?>
  </a>
</div>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>  

1 个回复
SO网友:onur

Did you try this?

$paged1 = (get_query_var(\'page\')) ? get_query_var(\'page\') : 1;
结束

相关推荐

是否使用POST_QUERY拉取POST META?

我正在构建一个自定义索引循环,目前只使用query\\u帖子。问题是,在循环中,我必须查询post元数据(使用get\\u post\\u meta),我认为每次调用它时都必须查询DB。有什么方法可以通过query\\u帖子获取元数据吗?我需要为每篇文章存储的大部分元数据(如果不是全部的话)。谢谢,麦克斯

使用瞬时API实现WP查询中的分页 - 小码农CODE - 行之有效找到问题解决它

使用瞬时API实现WP查询中的分页

时间:2012-07-20 作者:Ronin

我已经将WordPress瞬态系统与w3 total cache集成。现在我无法对此查询进行分页。

<?php
  $paged1 = (get_query_var(\'paged1\')) ? get_query_var(\'paged1\') : 1;
  $recent1 = get_transient( \'recent1\' );
  if ( false === $recent1) {
    $recent1 = new WP_Query (\'cat=3&posts_per_page=5\'.\'&paged=\'.$paged1);
     set_transient(\'recent1\', $recent1, 60*60);
  }
  // do normal loop stuff
  if ($recent1->have_posts()) : while ($recent1->have_posts()) : $recent1->the_post();
?>
<div id="line">
  <a href="<?php the_permalink () ?>" rel="bookmark">
    <h2><?php the_title (); ?></h2>
    <?php the_post_thumbnail(array(100,100), array(\'class\' => \'alignleft\')); ?>
    <?php the_advanced_excerpt(); ?>
  </a>
</div>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>  

1 个回复
SO网友:onur

Did you try this?

$paged1 = (get_query_var(\'page\')) ? get_query_var(\'page\') : 1;