洛杉矶MC机房 高速低价18元起

DIYVM

WordPress无插件调用最新、热门、随机文章实例代码

提示:如果官网是英文页面,建议使用谷歌浏览器能同步翻译页面。点击下载【谷歌浏览器最新绿色便携版】
注意:部分文章发布时间较长,可能存在未知因素,购买时建议在本站搜索商家名称,先充分了解商家动态。
交流:唯一投稿邮箱:hostvps@88.com。

调用最新文章: 

  1. <ul>  
  2. <?php $post_query = new WP_Query(‘showposts=10′);  
  3. while ($post_query->have_posts()) : $post_query->the_post();  
  4. $do_not_duplicate = $post->ID; ?>  
  5. <li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li>  
  6. <?php endwhile;?>  
  7. </ul>  

调用热门文章: 

  1. <ul>  
  2. <?php  
  3. $post_num = 10; // 设置调用条数  
  4. $args = array(  
  5. ‘post_password’ => ”,  
  6. ‘post_status’ => ‘publish’, // 只选公开的文章.  
  7. ‘post__not_in’ => array($post->ID),//排除当前文章  
  8. ‘caller_get_posts’ => 1, // 排除置顶文章.  
  9. ‘orderby’ => ‘comment_count’, // 依评论数排序.  
  10. ‘posts_per_page’ => $post_num  
  11. );  
  12. $query_posts = new WP_Query();  
  13. $query_posts->query($args);  
  14. while( $query_posts->have_posts() ) { $query_posts->the_post(); ?>  
  15. <li><a href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”><?php the_title(); ?></a></li>  
  16. <?php } wp_reset_query();?>  
  17. </ul>  

调用随机文章:

  1. <ul>  
  2. <?php  
  3. global $post;  
  4. $postid = $post->ID;  
  5. $args = array( ‘orderby’ => ‘rand’, ‘post__not_in’ => array($post->ID), ‘showposts’ => 10);  
  6. $query_posts = new WP_Query();  
  7. $query_posts->query($args);  
  8. ?>  
  9. <?php while ($query_posts->have_posts()) : $query_posts->the_post(); ?>  
  10. <li><a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></a></li>  
  11. <?php endwhile; ?>  
  12. </ul>  

 

About 贝壳

【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。

 收藏 (0) 打赏

您可以选择一种方式赞助本站

支付宝扫一扫赞助

微信钱包扫描赞助

本文链接:贝壳主机网 » WordPress无插件调用最新、热门、随机文章实例代码

分享到: 生成海报
香港/美国/国内高速VPS
切换注册

登录

忘记密码 ?

切换登录

注册

我们将发送一封验证邮件至你的邮箱, 请正确填写以完成账号注册和激活