gpt4 book ai didi

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

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 32 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章WordPress无插件调用最新、热门、随机文章实例代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

调用最新文章:  
  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>  

  。

最后此篇关于WordPress无插件调用最新、热门、随机文章实例代码的文章就讲到这里了,如果你想了解更多关于WordPress无插件调用最新、热门、随机文章实例代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com