0
我正在使用大量標籤和每個帖子分類的音樂網站。例如,在藝術家的頁面上,相關的帖子顯示基於標籤的藝術家的發佈。我曾嘗試添加使用Wordpress' post_type到的$ args =陣列(標籤 -根據標籤顯示相關帖子
'post_type' => 'releases'
,但並未奏效
例如,下面是完整的代碼 -
<div class="relatedposts">
<h3>Releases by Artist</h3>
<?php
$orig_post = $post;
global $post;
$tags = wp_get_post_tags($post->ID);
if ($tags) {
$tag_ids = array();
foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
$args=array(
'post_type' => 'releases',
'tag__in' => $tag_ids,
'post__not_in' => array($post->ID),
'posts_per_page'=>4, // Number of related posts to display.
'caller_get_posts'=>1
);
$my_query = new wp_query($args);
while($my_query->have_posts()) {
$my_query->the_post();
?>
<div class="relatedthumb">
<a rel="external" href="<? the_permalink()?>"><?php the_post_thumbnail(array(150,100)); ?><br />
<?php the_title(); ?>
</a>
</div>
<? }
}
$post = $orig_post;
wp_reset_query();
?>
</div>
我跟着其他很多帖子#1的,似乎無法得到正確的結果。我在哪裏去了?!
沒有,似乎並沒有被它的相關... – 2015-04-02 12:54:23
我編輯了以上我的網站上使用的代碼,它看起來像相同的腳本,它在我的網站上工作。看起來你唯一真正不同的地方是你正在調用帖子類型。看看,也許你可以在上面找到答案 – 2015-04-02 13:12:31
是的,這是我使用的代碼。它調用所有相關的標籤。我已經在$ args = array中嘗試了很多變體(section。嗯。令人費解的。 – 2015-04-02 13:18:51