0

http://www.getwetsailing.com/(ワードプレス)

ホームページに2つの別々のカテゴリを表示しようとすると、「The GarminQuatixGPSWatch」と「WestMarineSailingGloves 3/4 Finger」が表示されます(どちらも同じカテゴリのものです)。

以下のコードは(index.phpから)編集する必要がある場所だと思いますが、多分私はかなり離れています。

<div id="content" class="columns col10">
<?php
    $cat_headline=get_option('colabs_cat_headline');
    if($cat_headline=='')$cat_headline=1;
    $cat_featured=get_option('colabs_cat_featured');
    if($cat_featured=='')$cat_featured=1;
    query_posts('showposts=2&cat='.$cat_headline);
    $i=1;
    if ( have_posts() ) :
    ?>
<div class="headline columns col10">
    <?php while ( have_posts() ) : the_post(); ?>
    <div class="featured column <?php if ($i==1){?>col6<?php }else{ ?>col4<?php }?>">
        <?php 
        if ($i==1){$image_headline_width=474;$image_headline_height=318;}else{$image_headline_width=306;$image_headline_height=215;}
        colabs_image('width='.$image_headline_width.'&height='.$image_headline_height.'&play=true'); 
        $i++;
        ?>
        <h3 class="headline-title"><a href="<?php the_permalink();?>"><?php the_title();?></a></h3>
        <p><?php excerpt();?></p>
        <a href="<?php the_permalink();?>" class="more-link"><?php _e('Continue Reading','colabsthemes');?> &rarr;</a>
    </div><!-- .featured1 -->
    <?php endwhile; ?>

</div><!-- .headline -->
<?php endif; ?>

<?php colabs_latest_post(5,'col10');?><!-- .recent-entry -->



</div><!-- #content -->

どんな助けでも大いに。

ありがとう、ケン

4

2 に答える 2

1

クエリで渡すカテゴリは1つだけです。そのため、クエリには1つのカテゴリからの投稿しか含めることができません。$cat_headlineおよび$cat_featuredカテゴリからの投稿が必要な場合があります。

したがって、次のように変更する必要がありquery_posts('showposts=2&cat='.$cat_headline);ますquery_posts('posts_per_page' => 2, 'category__and' => array($cat_headline, $cat_featured));

コードは次のようになります。

$cat_headline=get_option('colabs_cat_headline');
if($cat_headline=='')$cat_headline=1;

$cat_featured=get_option('colabs_cat_featured');
if($cat_featured=='')$cat_featured=1;

query_posts( array('posts_per_page' => 2, 'category__and' => array($cat_headline, $cat_featured)) );

ワードプレスコーデックスの完全なドキュメントを確認してください、それはあなたをもっと助けることができます。

ありがとう。

于 2013-03-20T23:24:41.177 に答える