3

我试图在作者页面上集成这个http://jsfiddle.net/Va8Un/10/以显示来自自定义帖子类型的所有帖子。

这是我的测试代码,显示了我想要做什么,这段代码在 3 span4 上显示了相同的帖子:

<?php 
$args1 = array(
'post_type' => array( 'peliculas' ),
'posts_per_page' => -1,
);
$query1 = new WP_Query( $args1 );
if ( $query1->have_posts() ) { ?>
<div class="carousel slide" id="autor-pelicules">
 <div class="carousel-inner">
    <?php 
    $i = 0;
    while ( $query1->have_posts( )) : $i++; $query1->the_post();
    $active = ($i == 1) ? ' active' : '';
    ?>  
<div class="item <?php echo $active; ?>">

    <div class="span4">
    <div class="thumbnail">
      <a title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>" rel="bookmark">
                <?php   if ( has_post_thumbnail() ) {   
                    the_post_thumbnail('mini', array ('class' => 'widget-uef'));
                } else { ?>
                    <img src="<?php echo get_stylesheet_directory_uri(); ?>/tema/imatges/predefinides/no-poster-65x90.png" class="widget-uef" alt="<?php the_title_attribute(); ?>" />
                <?php } ?>
                </a> 
    </div>
   </div>

   <div class="span4">
    <div class="thumbnail">
      <a title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>" rel="bookmark">
                <?php   if ( has_post_thumbnail() ) {   
                    the_post_thumbnail('mini', array ('class' => 'widget-uef'));
                } else { ?>
                    <img src="<?php echo get_stylesheet_directory_uri(); ?>/tema/imatges/predefinides/no-poster-65x90.png" class="widget-uef" alt="<?php the_title_attribute(); ?>" />
                <?php } ?>
                </a> 
    </div>
  </div>

  <div class="span4">
    <div class="thumbnail">
      <a title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>" rel="bookmark">
                <?php   if ( has_post_thumbnail() ) {   
                    the_post_thumbnail('mini', array ('class' => 'widget-uef'));
                } else { ?>
                    <img src="<?php echo get_stylesheet_directory_uri(); ?>/tema/imatges/predefinides/no-poster-65x90.png" class="widget-uef" alt="<?php the_title_attribute(); ?>" />
                <?php } ?>
                </a> 
    </div>
  </div>

</div> 
    <?php
    endwhile;
    ?>
</div>
  <a class="carousel-control left" href="#autor-pelicules" data-slide="prev"><img src="<?php echo $jp_imatges . 'carousel-l.png'; ?>" alt="Pel&iacute;cula anterior" /></a>
<a class="carousel-control right" href="#autor-pelicules" data-slide="next"><img src="<?php echo $jp_imatges . 'carousel-r.png'; ?>" alt="Pel&iacute;cula siguiente" /></a> 

我尝试以多种方式处理一个查询,但我无法在不使用$args1中的'posts_per_page' => 3的情况下显示 3 个不同的帖子,当我使用'posts_per_page' => 3时,检索到的帖子还可以,但查询有没有分页,因为只检索这 3 个帖子。

关于如何使用 wordpress 查询来实现这一点的任何想法?

4

1 回答 1

0

您的代码中缺少两件事

  1. 您需要将此'paged' => $paged 添加到您的$args1
  2. 您需要调用 WordPress 分页功能,可以使用此功能完成<?php page_navi(); // use the page navi function ?>

我认为如果您使用这些,它应该对您有用。让我知道它是否有帮助或使用此功能后得到的任何结果:)

于 2013-12-17T06:41:15.473 回答