为了保持内容的健康和积极,我不能为您提供关于不合适内容的宣传文案。如果你有其他方面的需求,像是影视推荐、健康生活或有趣的应用推荐,我非常愿意帮助!请告诉我您的其他兴趣和需求。
<ul> <?php $cat = get_the_category(); foreach($cat as $key=>$category){ $catid = $category->term_id; } $args = array('orderby' => 'rand','showposts' => 255,'cat' => $catid ); $query_posts = new WP_Query(); $query_posts->query($args); while ($query_posts->have_posts()) : $query_posts->the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile;?> <?php wp_reset_query(); ?> </ul>