WordPress调用同分类随机文章

quality,Q 70

1638704625 20211205114345 61aca5f12afa3
1638704625 20211205114345 61aca5f12e49d

WordPress随机文章

在适当的位置显示调用随机文章可以促进网站内链,增加文章阅读点击量,有利于SEO,网上大部分Wordpress推荐阅读:关于WordPress插件、主题与PHP8的兼容性调用随机文章代码都是基于全站文章,这里发一个调用同分类随机文章的代码。

将下面代码放到主题文章页面single模板或者边栏sidebar模板适当位置即可:

  1. <ul>
  2.     <?php
  3.     $cat = get_the_category();
  4.     foreach($cat as $key=>$category){
  5.         $catid = $category->term_id;
  6.     }
  7.     $args = array(‘orderby’ => ‘rand’,’showposts’ => 8,’cat’ => $catid );
  8.     $query_posts = new WP_Query();
  9.     $query_posts->query($args);
  10.     while ($query_posts->have_posts()) : $query_posts->the_post();
  11.     ?>
  12.     <li><a href=“<?php the_permalink(); ?>”><?php the_title(); ?></a></li>
  13.     <?php endwhile;?>
  14.     <?php wp_reset_query(); ?>
  15. </ul>

类似文章