多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
显示最多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/)