カスタム投稿タイプからのすべての投稿を表示するために、この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í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ícula siguiente" /></a>
私はいくつかの方法で1つのクエリを実行しようとしましたが、$args1で' posts_per_page ' => 3を使用せずに 3 つの異なる投稿を表示することはできません。この 3 つの投稿のみを取得するため、ページネーションはありません。
wordpress クエリでこれを実装する方法について何か考えはありますか?