我试图在作者页面上集成这个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>
我尝试以多种方式处理一个查询,但我无法在不使用$args1中的'posts_per_page' => 3的情况下显示 3 个不同的帖子,当我使用'posts_per_page' => 3时,检索到的帖子还可以,但查询有没有分页,因为只检索这 3 个帖子。
关于如何使用 wordpress 查询来实现这一点的任何想法?