2

我正在使用以下代码在 single.php 中显示具有相同标签的帖子列表:

<?php
if ( is_single() ) {
  $tags = wp_get_post_tags($post->ID);
    if ($tags) {
    $first_tag = $tags[0]->term_id;
echo 'first_tag' .$first_tag;
$args=array(
  'tag__in' => array($first_tag),
  'post__not_in' => array($post->ID),
  'showposts'=>5
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
  echo 'Related Posts';
  while ($my_query->have_posts()) : $my_query->the_post(); ?>
    <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php     the_title_attribute(); ?>"><?php the_title(); ?></a></p>
   <?php
  endwhile;
} //if ($my_query)
  } //if ($tags)
  wp_reset_query();  // Restore global post data stomped by the_post().
} //if (is_single())
?>

但是,当没有具有相同标签的其他帖子时,我希望它显示类似“未找到帖子”的内容。

任何想法我可以如何做到这一点?

4

1 回答 1

0

只需将 else 语句添加到 if($myquery->havePosts)

...
    <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php     the_title_attribute(); ?>"><?php the_title(); ?></a></p>
   <?php
  endwhile;
} //if ($my_query)
else{
    echo "No Posts" //Look I am HERE 
}
  } //if ($tags)
于 2013-08-19T11:15:31.447 回答