私は問題があります。このコードで1回の投稿と5回の投稿を表示したいのですが、彼は必要以上に2つの投稿を表示しています。私が得られないのは、同じテーマの別のサイトが機能しているということです。完全に同じテーマは他のウェブサイトだけです。誰が私を助けられるか?!(間違った結果を確認してくださいhttp://radiozuid.com/ websie正しい結果http://radiozuid.rtv-zuid.com/beta/)(まったく同じテーマ)
<?php
$the_query = new WP_Query(array(
'posts_per_page' => 1
));
while ( $the_query->have_posts() ) :
$the_query->the_post();
?>
<div class="item active">
<?php if(has_post_thumbnail()): ?>
<?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'small-nivo-thumb'); ?>
<img src="<?php echo get_template_directory_uri(); ?>/timthumb.php?src=<?php echo $image[0]; ?>&w=620&h=350" class="postafbeelding" alt="<?php the_title(); ?>">
<?php else: ?>
<img src="<?php echo get_template_directory_uri(); ?>/timthumb.php?src=<?php echo get_template_directory_uri(); ?>/images/thumbnail.png&w=620&h=350" class="postafbeelding" alt="<?php the_title(); ?>">
<?php endif; ?>
<div class="carousel-caption">
<h3 class="titel"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h3>
<p><?php echo string_limit_words(get_the_excerpt(), 35); ?>...<a href="<?php the_permalink(); ?>" rel="tooltip" data-original-title="Lees Meer" class="leesmeer"> Lees Meer</a></p>
</div>
</div>
<?php
endwhile;
wp_reset_postdata();
?>
<?php
$the_query = new WP_Query(array(
'posts_per_page' => 5,
'offset' => 1
));
while ( $the_query->have_posts() ) :
$the_query->the_post();
?>
<div class="item">
<?php if(has_post_thumbnail()): ?>
<?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'small-nivo-thumb'); ?>
<img src="<?php echo get_template_directory_uri(); ?>/timthumb.php?src=<?php echo $image[0]; ?>&w=620&h=350" class="postafbeelding" alt="<?php the_title(); ?>">
<?php else: ?>
<img src="<?php echo get_template_directory_uri(); ?>/timthumb.php?src=<?php echo get_template_directory_uri(); ?>/images/thumbnail.png&w=620&h=350" class="postafbeelding" alt="<?php the_title(); ?>">
<?php endif; ?>
<div class="carousel-caption">
<h3 class="titel"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h3>
<p><?php echo string_limit_words(get_the_excerpt(), 35); ?>...<a href="<?php the_permalink(); ?>" rel="tooltip" data-original-title="Lees Meer" class="leesmeer"> Lees Meer</a></p>
</div>
</div>
<?php
endwhile;
wp_reset_postdata();
?>