0

Wordpress で関連する投稿を表示するクエリを作成しました.同じタクソノミーの投稿。このコードは、現在の投稿が複数のカテゴリに属しており、これらのカテゴリに属している別の投稿がある場合を除いて、うまく機能します。この状況では、共有するカテゴリの数に応じて、他の投稿が 2 回以上表示されます

問題は、投稿が繰り返されているかどうかを確認する方法と、それを防ぐ方法です。 コード:

<?php 
$terms = get_the_terms( $currentid, 'taxonomy' );
$cats = array_map(function($a){ return $a->slug; }, $terms);

    foreach ($cats as $cat) {
        $args=array(
  'taxonomy' => $cat ,
  'post_type' => 'apps',
  'post_status' => 'publish',
  'posts_per_page' => 4,
);
global $wp_query;
$wp_query = new WP_Query($args);
  while ($wp_query->have_posts()) : $wp_query->the_post();
    if($currentid !== get_the_ID()){ 


  ?>

    <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">
    <?php
    if ( has_post_thumbnail() ){
    $appfetured      = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ));
    $appfeturedimage = $appfetured[0];
    }else{
    $appfeturedimage = '../img/defaultappicon.png';
    }
    ?>
    <img class="appfeatured" src="<?php echo $appfeturedimage; ?>" alt="<?php the_title_attribute(); ?>" />
    </a>
    </li>
    <?php
    }
   endwhile;

wp_reset_query();  // Restore global post data stomped by the_post().
}//end foreach
?>
4

1 に答える 1

0

現在の投稿のすべてのカテゴリのすべての投稿を取得するだけの場合は、これを試してください。

<?php
    $args = array(
        'cat'            => wp_get_post_categories($currentid),
        'post_type'      => 'apps',
        'post_status'    => 'publish',
        'posts_per_page' => 4
    );

    new WP_Query($args);

Wordpress を使用するのは久しぶりなので、カテゴリとタクソノミーに違いがあるかどうかはわかりません。これを試してみてください。

<?php
    terms = get_the_terms( $currentid, 'taxonomy' );
    $cats = array_map(function($a){ return $a->slug; }, $terms);

    $args = array(
        'taxonomy' => $cats,
        'post_type' => 'apps',
        'post_status' => 'publish',
        'posts_per_page' => 4,
    );

    global $wp_query;
    $wp_query = new WP_Query($args);
于 2013-06-20T22:55:45.470 に答える