wordpress当前分类下随机文章调用代码

1002 ℃

wordpress建站如何利用代码调用随机当前分类下文章?下面web建站小编给大家介绍一下同分类随机文章的调用方法!

代码如下:

<?php
  $cat = get_the_category();
  foreach($cat as $key=>$category){
  $catid = $category->term_id;}
  $args = array('orderby' => 'rand','showposts' => 10,'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(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
  
  <?php endwhile;?>
  <?php wp_reset_query(); ?>

wordpress如何获取网站的最新文章、热门文章、随机文章?

wordpress利用TAG标签的ID来获取这个标签下的所有文章

wordpress建站利用orderby调用全站随机文章

wordpress调用全站热门文章(代码介绍)

wordpress调用当前分类下所有文章(代码介绍)

标签: cat, showposts, 文章调用, 随机文章, 随机读取

上面是“wordpress当前分类下随机文章调用代码”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_2413.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

如何在Git中将文件恢复到某个指定版本?
更新了几年的站没有流量是咋回事
织梦 Fatal error: Call to a member function..怎么办
ElementUI时间控件el-date-picker选择时间范围固定(不
classList.add和classList.remove不兼容ie6/7/8/9解决方法