我有一个名为Short Courses的自定义帖子类型,我已经为它添加了一个名为课程类型的自定义分类,这使我能够对课程进行分类......
我正在尝试创建一个页面模板,该模板将显示具有单一分类(类别)的所有课程。在这种情况下,我想显示所有已经分配了分类法(类别)的课程Adobe ...我尝试了一些不同的东西,但是我的最新代码:
<?php
// get the custom post type's taxonomy terms
$custom_taxterms = wp_get_object_terms( $post->ID, 'adobe', array('fields' => 'ids') );
// arguments
$args = array(
'post_type' => 'short_courses',
'post_status' => 'publish',
'posts_per_page' => 20, // you may edit this number
'orderby' => 'rand',
'tax_query' => array(
array(
'taxonomy' => 'adobe',
'field' => 'id',
'terms' => $custom_taxterms
)
),
'post__not_in' => array ($post->ID),
);
$related_items = new WP_Query( $args );
// loop over query
if ($related_items->have_posts()) :
echo '<ul>';
while ( $related_items->have_posts() ) : $related_items->the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php
endwhile;
echo '</ul>';
endif;
// Reset Post Data
wp_reset_postdata();
?>
它没有通过任何东西......
我也尝试过这段代码:
<?php
$args = array(
'post_type' => 'short_courses',
'orderby' => 'title',
'order' => 'ASC',
'product_categories' => 'adobe'
);
$the_query = new WP_Query( $args );
?>
<?php if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php
$thumbnail_id = get_post_thumbnail_id();
$thumbnail_url = wp_get_attachment_image_src( $thumbnail_id, 'thumbnail-size', true );
?>
<p><a href="<?php the_permalink(); ?>"><img src="<?php the_field('image'); ?>" alt="<?php the_title();?> graphic"></a></p>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<?php $products_count = $the_query->current_post + 1; ?>
<?php if ( $products_count % 4 == 0): ?>
<?php endif; ?>
<?php endwhile; endif; ?>
但是这段代码涵盖了所有短期课程,而不仅仅是Adobe课程......
任何人都可以在我出错的地方打电话给我吗?
答案 0 :(得分:1)
你注意到这条线吗?
<?php if ( have_posts() ) : while
可以将其更改为
<?php if ( $the_query->have_posts() ) : while
并查看过滤器是否已应用? WordPress具有全局帖子功能,例如 get_the_title(),这可能会干扰您的自定义查询对象,例如您正在使用的 $ the_query 。
我还建议您在while之前删除 if 语句,以提高代码的可读性。如果查询没有任何帖子,那么while循环将不会在页面上产生任何输出,因此需要if语句。
然后整个代码变为
<?php
$args = array(
'post_type' => 'short_courses',
'orderby' => 'title',
'order' => 'ASC',
'product_categories' => 'adobe'
);
$the_query = new WP_Query( $args );
?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php
$thumbnail_id = get_post_thumbnail_id();
$thumbnail_url = wp_get_attachment_image_src( $thumbnail_id, 'thumbnail-size', true );
?>
<p><a href="<?php the_permalink(); ?>"><img src="<?php the_field('image'); ?>" alt="<?php the_title();?> graphic"></a></p>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<?php $products_count = $the_query->current_post + 1; ?>
<?php if ( $products_count % 4 == 0): ?>
<?php endif; ?>
<?php endwhile; ?>
请确保您在'product_categories'=&gt;上使用的分类名称'adobe'与您在 register_taxonomy 函数中使用的相同,即确保您拥有 register_taxonomy('product_categories',array('short_courses'),$ args); < / strong>如果 product_categories 上还有其他内容,请在查询中使用该功能。希望这会有所帮助。
答案 1 :(得分:0)
好的,我设法解决了这个问题 - 这只是一个小错误。在上面的第二批代码中,说product_categories的部分需要更改为course_type!接下来是新的工作代码:
<?php
$args = array(
'post_type' => 'short_courses',
'orderby' => 'title',
'order' => 'ASC',
'course_type' => 'adobe'
);
$the_query = new WP_Query( $args );
?>
<?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php
$thumbnail_id = get_post_thumbnail_id();
$thumbnail_url = wp_get_attachment_image_src( $thumbnail_id, 'thumbnail-size', true );
?>
<p><a href="<?php the_permalink(); ?>"><img src="<?php the_field('image'); ?>" alt="<?php the_title();?> graphic"></a></p>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<?php $products_count = $the_query->current_post + 1; ?>
<?php if ( $products_count % 4 == 0): ?>
<?php endif; ?>
<?php endwhile; endif; ?>