0

ここにコードがありますが、特定のカテゴリで設定するにはどうすればよいですか

「1」のIDを持つ「Electronic」のように

ここにコードがあります

<?php 
// get the product categories
$product_categories = wp_get_object_terms( wpsc_the_product_id(), 'wpsc_product_category', array('fields' => 'ids') );
// arguments
$args = array(
'post_type' => 'wpsc-product',
'post_status' => 'publish',
'posts_per_page' => -1,
'orderby' => 'rand',
'tax_query' => array(
    array(
        'taxonomy' => 'wpsc_product_category',
        'field' => 'id',
        'terms' => $product_categories
    )
)
);
$related_products = new WP_Query( $args );
// loop over query
if ($related_products->have_posts()) :
echo '<ul>';
while ( $related_products->have_posts() ) : $related_products->the_post();
?>
    <li><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php
endwhile;
echo '</ul>';
endif;
// Reset Post Data
wp_reset_postdata();
?>

そのページに製品を表示します。ページの製品とは異なるように、入力したカテゴリに基づいて製品を表示する必要があります

4

1 に答える 1

0

ループで次のようなコードを使用して、そのカテゴリからのみ投稿を選択します。

query_posts(array('category_name' => 'Electronic', 'showposts' => '1'));
if (have_posts()): while (have_posts()) : the_post();
...

更新された 例:

<?php
query_posts( array( 'category_name' => 'Electronic',
                    'showposts'     => '1' ) );  // Replace '1' with posts quantity per page
echo '<ul>';
if ( have_posts() ): while ( have_posts() ) : the_post();
  ?>

<li><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>

<?php
endwhile;
  echo '</ul>';
endif;
// Reset Post Data
wp_reset_postdata();
?>

最後のコードは質問のスクリプトを置き換えることができると思います。ただし、テストできないため、わかりません。

注: もちろん、カテゴリを作成してそのカテゴリに投稿を割り当てるか、既存のカテゴリwpsc_product_categoryを使用する必要があります。

于 2012-11-13T05:37:52.350 に答える