🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
显示最多3个相关文章的代码: ``` <?php global $post; $cats = wp_get_post_categories($post->ID); if ($cats) { $args = array( 'category__in' => array( $cats[0] ), 'post__not_in' => array( $post->ID ), 'showposts' => 3, 'caller_get_posts' => 1 ); query_posts($args); if (have_posts()) { while (have_posts()) { the_post(); update_post_caches($posts); ?> <!-- 内容 --> <?php } } else { ?> * 暂无相关文章 <?php } wp_reset_query(); } else { ?> * 暂无相关文章 <?php } ?> ``` 参考: [https://www.4xseo.com/blog/9361/](https://www.4xseo.com/blog/9361/)