PHP 按照任何帖子类型的自定义分类的条款列出帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 按照任何帖子类型的自定义分类的条款列出帖子相关的知识,希望对你有一定的参考价值。
<?php
// List posts by the terms for a custom taxonomy of any post type
$post_type = 'posttypename';
$tax = 'taxonomyname';
$tax_terms = get_terms( $tax );
if ($tax_terms) {
foreach ($tax_terms as $tax_term) {
$args = array(
'post_type' => $post_type,
"$tax" => $tax_term->slug,
'post_status' => 'publish',
'orderby' => 'title',
'order' => 'ASC',
'posts_per_page' => -1,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) : ?>
<h2 class="produktgrupp"><?php /*?>All <?php echo $tax; ?> Posts For <?php */?><?php echo $tax_term->name; ?></h2>
<ul class="produktlistning">
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<li id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<span><?php the_post_thumbnail('produktlistning-thumbnail'); ?></span>
<h3><?php the_title(); ?></h3>
</a>
</li>
<?php endwhile; // end of loop ?>
</ul>
<?php else : ?>
<?php endif; // if have_posts()
wp_reset_query();
} // end foreach #tax_terms
}
?>
以上是关于PHP 按照任何帖子类型的自定义分类的条款列出帖子的主要内容,如果未能解决你的问题,请参考以下文章
仅显示特定自定义帖子类型的自定义分类计数
Wordpress 按税收条款获取帖子-税收条款是页面蛞蝓
php 具有自定义分类类别的自定义帖子类型
php 创建具有自定义分类的自定义帖子类型
php 带有分类的自定义帖子类型中单个项目的面包屑
无法获取自定义分类存档页面以显示帖子