私はWordPress 3.1.3を使用していて、各カテゴリーの投稿数を含む「商品」メニューを作成しようとしています。このような:
このために、カスタム投稿タイプCars
と分類法Type
とBrand
を作成しました。これが最善の方法であるかどうかわからないが、これが私のコードです。
<?php $auto_types = get_terms('type', 'hide_empty=1'); ?>
<ul>
<?php foreach( $auto_types as $auto_type ) : ?>
<li>
<a href="<?php echo get_term_link( $auto_type->slug, 'type' ); ?>">
<?php echo $auto_type->name; ?> (<?php echo $auto_type->count; ?>)
</a>
<?php
$terms = get_terms('brand');
$count = count($terms);
if($count > 0) :
?>
<ul>
<?php foreach ($terms as $term) : ?>
<li>
<a href="/?type=<?php echo $auto_type->slug ?>&brand=<?php echo $term->slug ?>">
- - <?php echo $term->name; ?> (<?php echo $term->count; ?>)
</a>
</li>
<?php endforeach ?>
</ul>
<?php endif ?>
</li>
<?php endforeach ?>
</ul>
だから私の質問は次のとおりです。
編集 - 2番目の問題を解決することができましたが、それが良い方法かどうかはまだわかりません。これが新しいコードです。
<?php $auto_types = get_terms('type', 'hide_empty=1'); ?>
<ul>
<?php foreach( $auto_types as $auto_type ) : ?>
<li>
<a href="<?php echo get_term_link( $auto_type->slug, 'type' ); ?>">
<?php echo $auto_type->name; ?>
</a>
<?php $auto_brands = get_terms('brand', 'parent=0' ); ?>
<ul>
<?php foreach ($auto_brands as $auto_brand) : ?>
<?php $brand_filter['tax_query'] = array(
'relation' => 'AND',
array(
'taxonomy' => 'type',
'terms' => array($auto_type->slug),
'field' => 'slug',
),
array(
'taxonomy' => 'brand',
'terms' => array($auto_brand->slug),
'field' => 'slug',
),
);
$tax_query = new WP_Query($brand_filter);
$count = 0;
if ( $tax_query->have_posts() ) : while ( $tax_query->have_posts() ) : $tax_query->the_post();
$count++;
endwhile; endif; wp_reset_postdata();
if ( $count > 0 ) : ?>
<li>
<a href="/?type=<?php echo $auto_type->slug ?>&brand=<?php echo $auto_brand->slug ?>">
- - <?php echo $auto_brand->name; ?> (<?php echo $count; ?>)
</a>
</li>
<?php endif; endforeach ?>
</ul>
</li>
<?php endforeach ?>
</ul>
編集2 - query_posts()
メソッドをwp_query()
に変更しました(VicePrezのおかげで)が、正しい投稿数を得るためだけにqueryを使うのが効率的です。このメニューを作るには?
wp_query()
ではなくquery posts()
クラスを統合するようにコードを少し調整しました。これは のみメインループを変更するためのものです 。二次ループを作成しようとするときにwp_query()
を使用するには、alwaysoptを使用する必要があります。
wp_query()
を使っているので、wp_reset_query
の代わりにwp_reset_postdata()
を使わなければなりません。これで問題が解決するかどうかはわかりませんが、コードをこれに合わせて調整してください。残りの問題については段階的に取り組みます。
<?php $auto_types = get_terms('type', 'hide_empty=1'); ?>
<ul>
<?php foreach( $auto_types as $auto_type ) : ?>
<li>
<a href="<?php echo get_term_link( $auto_type->slug, 'type' ); ?>">
<?php echo $auto_type->name; ?>
</a>
<?php $auto_brands = get_terms('brand', 'parent=0' ); ?>
<ul>
<?php foreach ($auto_brands as $auto_brand) : ?>
<?php $brand_filter['tax_query'] = array(
'relation' => 'AND',
array(
'taxonomy' => 'type',
'terms' => array($auto_type->slug),
'field' => 'slug',
),
array(
'taxonomy' => 'brand',
'terms' => array($auto_brand->slug),
'field' => 'slug',
),
);
$tax_query = new WP_Query($brand_filter);
if ( $tax_query->have_posts() ) :
$count = 1;
while ( $tax_query->have_posts() ) :
$tax_query->the_post();
if ( $count >= 1 ) { ?>
<li>
<a href="/?type=<?php echo $auto_type->slug ?>&brand=<?php echo $auto_brand->slug ?>">
- - <?php echo $auto_brand->name; ?> (<?php echo $count; ?>)
</a>
</li>
<? }
$count++;
endwhile;
wp_reset_postdata();
endif;
endforeach
?>
</ul>
</li>
<?php endforeach ?>
</ul>
更新:すべての投稿を表示するためにposts_per_page
パラメータを追加し、それを-1
に設定しました。私は自分の側でそれをテストしました。探していた結果が得られるはずです。
<?php $auto_types = get_terms('type', 'hide_empty=1'); ?>
<ul>
<?php foreach( $auto_types as $auto_type ) : ?>
<li>
<a href="<?php echo get_term_link( $auto_type->slug, 'type' ); ?>">
<?php echo $auto_type->name; ?>
</a>
<?php $auto_brands = get_terms('brand', 'parent=0' ); ?>
<ul>
<?php foreach ($auto_brands as $auto_brand) : ?>
<?php $brand_filter = array(
'posts_per_page' => '-1',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'type',
'field' => 'slug',
'terms' => array($auto_type->slug),
),
array(
'taxonomy' => 'brand',
'field' => 'slug',
'terms' => array($auto_brand->slug),
)
)
);
$tax_query = new WP_Query($brand_filter);
$count = 0;
if ( $tax_query->have_posts() ) : while ( $tax_query->have_posts() ) : $tax_query->the_post();
$count++;
endwhile; endif; wp_reset_postdata();
if ( $count > 0 ) : ?>
<li>
<a href="/?type=<?php echo $auto_type->slug ?>&brand=<?php echo $auto_brand->slug ?>">
- - <?php echo $auto_brand->name; ?> (<?php echo $count; ?>)
</a>
</li>
<?php endif; endforeach ?>
</ul>
</li>
<?php endforeach ?>
</ul>