与Timber在同一页面上的多个帖子分页

时间:2016-01-12 00:13:38

标签: wordpress pagination twig custom-post-type timber

我最近实施了一个博客,该博客从两种帖子类型中获取内容,并在选项卡式导航中显示它们。我遇到的问题是,我似乎无法为每个帖子类型创建分页链接,而没有一个覆盖另一个。

{('A', 'A') : 1, ('A', 'B') : 2, ('A', 'C') : 3,
 ('B', 'A') : 4, ('B', 'B') : 5, ('B', 'C') : 6,
 ('C', 'A') : 7, ('C', 'B') : 8, ('C', 'C') : 9}

我的index.php文件如下所示:

<div id="view1">
  {% block content %} {% for post in posts %} {% include ['tease-'~post.post_type~'.twig', 'tease.twig'] %} {% endfor %} {% endblock %}
  <div class="tool-pagination">
    <ul class="pages">
      <li>
        {% if pagination.prev %}
        <a href="{{pagination.prev.link}}" class="prev {{pagination.prev.link|length ? '' : 'invisible'}}">Prev</a>
        {% endif %}
      </li>
      {% for page in pagination.pages %}
      <li>
        {% if page.link %}
        <a href="{{page.link}}" class="{{page.class}}">{{page.title}}</a>
        {% else %}
        <span class="{{page.class}}">{{page.title}}</span>
        {% endif %}
      </li>
      {% endfor %}
      <li><a href="{{pagination.next.link}}" class="next {{pagination.next.link|length ? '' : 'invisible'}}">Next</a>
      </li>
    </ul>
    {% if pagination.next %} {% endif %}
  </div>
</div>

<!-- Workbench  Tab -->
<div id="view2">
  {% block workbench %} {% for post in workbench %} {% include ['tease-'~post.post_type~'.twig', 'tease.twig'] %} {% endfor %} {% endblock %}
  <div class="tool-pagination">
    <ul class="pages">
      <li>
        {% if pagination.prev %}
        <a href="{{pagination.prev.link}}" class="prev {{pagination.prev.link|length ? '' : 'invisible'}}">Prev</a>
        {% endif %}
      </li>
      {% for page in pagination.pages %}
      <li>
        {% if page.link %}
        <a href="{{page.link}}" class="{{page.class}}">{{page.title}}</a>
        {% else %}
        <span class="{{page.class}}">{{page.title}}</span>
        {% endif %}
      </li>
      {% endfor %}
      <li><a href="{{pagination.next.link}}" class="next {{pagination.next.link|length ? '' : 'invisible'}}">Next</a>
      </li>
    </ul>
    {% if pagination.next %} {% endif %}
  </div>
</div>

我尝试按照木材网站分页的说明进行操作,但我设法做的就是选择哪个类别不是分页

提前致谢!! 伊万

1 个答案:

答案 0 :(得分:1)

多重分页并不是我真正期待的。但这就是我认为它可以起作用的方式:

$context['posts'] = Timber::get_posts();
$context['posts_pagination'] = Timber::get_pagination();

$query = array('post_type' => 'workbench');
$context['workbench'] = Timber::get_posts($query);
query_posts($query); //this forces WP to rerun query stuff
$context['workbench_pagination'] = Timber::get_pagination();

这未经过测试,但根据你所得到的,这是我可以采取的最接近的刺伤