<?php global $post; $post_tags = wp_get_post_tags($post->ID); if ($post_tags) { foreach ($post_tags as $tag) { // 获取标签列表 $tag_list[] .= $tag->term_id; } $cat = get_the_category(); foreach($cat as $key=>$category){ $catid = $category->term_id; } // 随机获取标签列表中的一个…