0

我正在使用 Twitter Bootstrap 3 和 Roots 主题。

我有一个名为“投资组合”的页面,其中显示总共 15 个投资组合项目中的 6 个,

我正在使用以下代码:

/proman/assets/img/code011.jpg" alt="Folio Feature Image">

    <!-- Add the pagination functions here. -->
<?php   $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
        $query_recents = new WP_Query ( array( 'post_type' => 'portfolio', 'posts_per_page' => 3, 'paged' => $paged ) );
        if ( $query_recents->have_posts() ): 
            ?>

<!-- Start of the main loop. -->
 <?php while ( $query_recents->have_posts() ) : $query_recents->the_post(); ?>
      <div class="col-sm-4">
    <!-- the rest of your theme's main loop -->
       <?php get_template_part('templates/folio', get_post_format()); ?>
   </div>


<?php endwhile; ?>
<!-- End of the main loop -->

<!-- Add the pagination functions here. -->

<div class="nav-previous alignleft"><?php next_posts_link( 'Older posts' ); ?></div>
<div class="nav-next alignright"><?php previous_posts_link( 'Newer posts' ); ?></div>

<?php else : ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>

但什么都没有显示。我已经查看了 codex,因为有人告诉我这不适用于单页模板,我尝试了各种变体,但什么都不会显示。

这以前在非引导环境中对我有用,我不确定我需要做什么。

如果有人有答案,将不胜感激。

4

2 回答 2

2

$paged定义了你的变量吗?

如果没有,请在您的代码上方添加

$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
于 2013-10-17T14:18:46.590 回答
1

在集成 .thumbnail 组件的同时,我还将 root 和 bootstrap 3 与产品组合一起使用。

在这里查看:http: //calebserna.com/portfolio/

它工作得很好。我的解决方案是创建一个类别“portfolio”,然后编辑“templates/content.php”。

<?php if(is_category('192')) : ?>
<div 
<?php post_class('col-xs-6 col-md-3'); ?>  >    
  <!-- bootstrap 3 thumbnails component -->
  <div class="thumbnail">
  <?php if ( has_post_thumbnail() ) { ?>
  <a href="<?php the_permalink(); ?>">
  <?php the_post_thumbnail('bootstrap_portfolio_thumb'); ?>
  </a>
  <?php } ?>
  <div class="caption">
<?php the_title(); ?>
  </div>
  </div>
</div>
<?php else : ?>
<?php
//the default content loop below

然后编辑 config.php,这样边栏就不会出现在“投资组合”类别中。

如果您真的想使用带有 wp_query 的自定义页面,请尝试在模板中插入默认的根分页代码

 //index.php 
<?php if ($wp_query->max_num_pages > 1) : ?>
  <nav class="post-nav">
    <ul class="pager">
      <li class="previous"><?php next_posts_link(__('&larr; Older posts', 'roots')); ?></li>
      <li class="next"><?php previous_posts_link(__('Newer posts &rarr;', 'roots')); ?></li>
    </ul>
  </nav>
<?php endif; ?>
于 2013-12-21T05:07:07.013 回答