wordpress 在文章内容页获取相关文章,本文章所在分类的其它文章的方法

Data:01/03 09:55
2018
01/03
09:55
2018-01-03
  1. <?php
  2. if ( is_single() ) :
  3. global $post;
  4. $categories = get_the_category();
  5. foreach ($categories as $category) :
  6.     ?>
  7.         <?php
  8.         $posts = get_posts(‘numberposts=5&category=’$category->term_id.‘&exclude=’.get_the_ID());
  9.         foreach($posts as $post) :
  10.         ?>
  11.             <li>
  12.             <a href=“<?php the_permalink(); ?>”><?php the_title(); ?></a>
  13.             </li>
  14.         <?php endforeach; ?>
  15. <?php
  16. endforeachendif ; ?>
domainsworks

About domainsworks

  •