0

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にまったく慣れていないので、私がやろうとしていることが不可能な場合はご容赦ください

4

1 に答える 1

0

私は自分の解決策を見つけました。theme-options.php ファイルの各投稿にカテゴリを割り当て、管理パネルのテーマ オプションからカテゴリを選択する必要がありました...

//Select Category
$options[] = array( "name" => "Select a Category for the first homepage greeting",
                "desc" => "Hit the dropdown and select a category from the listings",
                "id" => $shortname."_homepage",
                "std" => "Select a category:",
                "type" => "select",
                "options" => $of_categories);  

//Select Category
$options[] = array( "name" => "Select a Category for the second homepage block of text",
                "desc" => "Hit the dropdown and select a category from the listings",
                "id" => $shortname."_homepage2",
                "std" => "Select a category:",
                "type" => "select",
                "options" => $of_categories); 
于 2013-06-27T00:38:20.937 に答える