1

我正在尝试根据自定义分类法显示相关帖子。我在 wordpress.org 上找到了一个这样的查询。但是,原始帖子在结果中多次重复。(words 是我使用的自定义分类的名称)似乎发生的是单个帖子根据设置的 showpost 数量而重复。有什么想法会导致这种情况吗?

编码:

<?php
//for in the loop, display all "content", regardless of post_type,
//that have the same custom taxonomy (e.g. words) terms as the current post
$backup = $post;  // backup the current object
$found_none = '<h2>No related posts found!</h2>';
$taxonomy = 'words';//  e.g. post_tag, category, custom taxonomy
$param_type = 'words'; //  e.g. tag__in, category__in, but genre__in will NOT work
$post_types = get_post_types( array('public' => true), 'names' );
$tax_args=array('orderby' => 'none');
$tags = wp_get_post_terms( $post->ID , $taxonomy, $tax_args);
if ($tags) {
  foreach ($tags as $tag) {
    $args=array(
      "$param_type" => $tag->slug,
      'post__not_in' => array($post->ID),
      'post_type' => $post_types,
      'showposts'=>5,
      'caller_get_posts'=>1
    );
    $my_query = null;
    $my_query = new WP_Query($args);
    if( $my_query->have_posts() ) {
      while ($my_query->have_posts()) : $my_query->the_post(); ?>
        <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
        <?php $found_none = '';
      endwhile;
    }
  }
}
if ($found_none) {
echo $found_none;
}
$post = $backup;  // copy it back
wp_reset_query(); // to use the original query again
?>
4

2 回答 2

0

foreach循环内部,您会得到重复。该代码实际上是在说;

  1. 获取分类类型的所有术语$param_type
  2. 对于每个术语,获得 5 个带有该术语标签的帖子

因此,如果您的帖子被标记为同一分类法的多个术语,它很可能会出现不止一次。

您可以迭代地将查询到的帖子添加到post__not_in数组中,以确保它们不会再次出现;

  1. $post_not_in = array($post->ID);在上面添加if ($tags) {

  2. 然后将该行替换post__not_in' => array($post->ID),post__not_in' => $post_not_in,.

  3. 最后,$post_not_in[] = get_the_ID();在你的while循环中,之后$found_none = '';

于 2010-06-08T01:47:34.477 回答
0

至于我,我将这个插件用于自定义分类相关的帖子。我希望该插件能帮助您解决问题。

于 2013-01-21T09:41:28.653 回答