在共享相同分类的Single-Custompostyle 1.php中显示随机的Customposttype2摘录

时间:2012-06-27 作者:Beags

好的,到处找这个。

Details:

自定义帖子类型#1=\'product\'>注册的分类法“productranges”

自定义帖子类型#2=\'Certisional\'>registered taxonomy\'Certisional\'

两个CPT共享“完整食物”、“零食”等类别。。例如

Question:

如何将同一共享类别的随机帖子摘录从“推荐”帖子显示到“产品”帖子中?在某种意义上,将睾丸与产品联系起来。

我使用了以下内容,但它只显示所有类别中的随机帖子,我需要它从当前正在查看的共享类别中输出:

<?php
$posts = get_posts(\'post_type=testimonial&issue=$issueid&post_status=publish&numberposts=1&orderby=rand\');

foreach ($posts as $post) : setup_postdata($post); ?>
<h3><?php the_title(); ?></h3>
<?php the_excerpt(\'<div class="readmore">\'); ?><a href="/testimonials">read more...</a> 

<?php endforeach; ?>
<?php

//Reset Query
wp_reset_query();?>
如果你能帮忙,干杯!

1 个回复
SO网友:Milo

你需要get_the_category() 然后设置category 在里面get_posts() 到该类别的$category->term_id.

结束

相关推荐