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> 

私はいくつかの方法で1つのクエリを実行しようとしましたが、$args1で' posts_per_page ' => 3を使用せずに 3 つの異なる投稿を表示することはできません。この 3 つの投稿のみを取得するため、ページネーションはありません。

wordpress クエリでこれを実装する方法について何か考えはありますか?

4

1 に答える 1

0

あなたのコードには2つのものがありません

  1. この'paged' => $pagedを$args1に追加する必要があります
  2. これを使用して実行できるWordPressのページネーション関数を呼び出す必要があります<?php page_navi(); // use the page navi function ?>

これらを使えば効果があると思います。それが役に立ったか、またはこれを使用した後に得られた結果があれば教えてください:)

于 2013-12-17T06:41:15.473 に答える