当前位置:首页 > CMS教程 > WordPress > 列表

wordpress主题制作中如何调用最新、热门、随机文章

发布:smiling 来源: PHP粉丝网  添加日期:2014-11-21 11:45:55 浏览: 评论:0 

如果想在wordpress主题制作过程中调用最新、热门、随机文章,可以使用wordpress自带的widget侧边栏的小工具功能来实现,但是这样会影响到我们想自定义侧边栏的效果,当然也有一些可以使用插件来实现这个功能的,不过使用插件始终对SEO方面有一定的影响,下面我给大家介绍一种不用插件也能实现.

wordpress最新、热门、随机文章的调用方法.

1、最新文章的调用代码:

  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> 

2、热门文章的调用代码:

  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 //开源软件:phpfensi.com 
  16.  
  17. (); ?></a></li> 
  18. <?php } wp_reset_query();?> 
  19. </ul> 

3、随机文章的调用代码:

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

从上三种文章的代码调用方法都测试过,其中最新文章和随机文章的调用方法是没有问题的,而热门文章的调用代码不知道为什么不能正常显示,但是删除了post_password’ => ”,这句代码就可以正常调用,不知道有没有那位大神可以留言告诉我原因,还有热门文章的调用,如果想依浏览数来排序又是怎么实现的呢?期高手的出现.

Tags: wordpress主题制作 wp随机文章

分享到: