HI,欢迎来到我爱模板网!

WordPress调用最新,随机,热门,指定分类代码汇总

关于WP文章调用方法,包括调用最新,指定分类,随机,热文等代码,经测试,支持最新版Wordpress。1调用最新文章<?php query_posts('showposts=6&cat=-111'); ?> // 显示篇数和排除分类<ul> <?php while (have_po...

关于WP文章调用方法,包括调用最新,指定分类,随机,热文等代码,经测试,支持最新版Wordpress。

1调用最新文章

<?php query_posts('showposts=6&cat=-111'); ?>  // 显示篇数和排除分类<ul>  <?php while (have_posts()) : the_post(); ?>  <li><a href="<?php%20the_permalink()%20?>"><?php the_title(); ?></a></li>  <?php endwhile;?>  </ul>  

2调用指定分类文章

<ul><?php    $args=array(        'cat' => 1,   // 分类ID        'posts_per_page' => 10, // 显示篇数    );    query_posts($args);    if(have_posts()) : while (have_posts()) : the_post();?>    <li>        <a href="<?php%20the_permalink();%20?>"><?php the_title(); ?></a>     </li><?php  endwhile; endif; wp_reset_query(); ?></ul>

3调用整站随机文章

<?phpglobal $post;$postid = $post->ID;$args = array( ‘orderby’ => ‘rand’, ‘post__not_in’ => array($post->ID), ‘showposts’ => 10); // 显示篇数$query_posts = new WP_Query();$query_posts->query($args);?><?php while ($query_posts->have_posts()) : $query_posts->the_post(); ?><li><a href="<?php%20the_permalink();%20?>"><?php the_title(); ?></a></li><?php endwhile; ?></ul>

4调用同分类随机文章

<ul><?php$cat = get_the_category();foreach($cat as $key=>$category){$catid = $category->term_id;}$args = array('orderby' => 'rand','showposts' => 8,'cat' => $catid ); // 显示篇数$query_posts = new WP_Query();$query_posts->query($args);while ($query_posts->have_posts()) : $query_posts->the_post();?><li><a href="<?php%20the_permalink();%20?>"><?php the_title(); ?></a></li><?php endwhile;?><?php wp_reset_query(); ?></ul>

5调用整站热门文章(按评论数)

<ul><?php$post_num = 10; // 显示篇数$args = array(‘post_password’ => ”,‘post_status’ => ‘publish’, // 只选公开的文章.‘post__not_in’ => array($post->ID),//排除当前文章‘caller_get_posts’ => 1, // 排除置顶文章.‘orderby’ => ‘comment_count’, // 依评论数排序.‘posts_per_page’ => $post_num);$query_posts = new WP_Query();$query_posts->query($args);while( $query_posts->have_posts() ) { $query_posts->the_post(); ?><li><a href="<?php%20the_permalink();%20?>"><?php the_title(); ?></a></li><?php } wp_reset_query();?></ul>

给TA打赏
共{{data.count}}人
人已打赏
wordpress教程

wordpress网站设计页脚位置包含那些内容可提高便捷度?

2023-2-16 15:59:52

wordpress教程

wordpress多语言企业网站内容注意事项

2023-2-16 15:59:53

【腾讯云】11.11云上盛惠!云服务器首年1.8折起,买1年送3个月!
11.11云上盛惠!海量产品·轻松上云!云服务器首年1.8折起,买1年送3个月!超值优惠,性能稳定,让您的云端之旅更加畅享。
查看更多相关信息>>
站长

(工作日 10:00 - 22:30 为您服务)

2026-01-30 03:56:10

您好,无论是售前、售后、意见建议……均可通过联系工单与我们取得联系。

猜你想问:

  • 购买的模板免费包安装吗?

  • 这个演示地址有吗?

  • 购买vip会员可以下载哪些模板?

您的留言我们已经收到,我们将会尽快跟您联系!
取消
立即选择任一渠道联系我们