2 つのコード ブロックがあり、それぞれ異なるカテゴリから 1 つの投稿を取得しようとしていますが、どちらも同じ投稿を返しています。正確には 2 番目の投稿の内容です。これが私のコードです...
<!-- homepage block 1 - START -->
<? $homepage = get_option('of_homepage') ?>
<?php query_posts('category_name='.$homepage.'&posts_per_page=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Add your content here -->
<div id="m2" class="f-ms">
<div id="m3" class="f-ms">
<h3 class="subtitlessmaller f-fp f-lp">
<?php the_title(); ?>
</h3>
</div>
<div id="m4" class="f-ms">
<p class="whitewider f-fp">
<?php the_content(); ?>
</p>
</div>
</div>
<?php endwhile;?>
<!-- homepage block 1 - END -->
<!-- homepage block 2 - START -->
<? $homepage2 = get_option('of_homepage2') ?>
<?php query_posts('category_name='.$homepage2.'&posts_per_page=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Add your content here -->
<div id="featboxtitle" class="f-ms">
<p class="f-fp f-lp"><span class="subindex"><?php the_title(); ?></span></p>
</div>
<div id="featimage" class="f-ms">
<p class="f-fp f-lp"><?php the_post_thumbnail(''); ?></p>
</div>
<p class="smaller">
<?php the_content(); ?>
</p>
<?php endwhile;?>
<!-- homepage block 2 - END -->
私はWordpressにまったく慣れていないので、私がやろうとしていることが不可能な場合はご容赦ください