WordPress教程

WordPress调用最新,随机,热门,指定分类文章

阿里云

WordPress 如何不使用插件实现调用最新文章、热门文章和随机文章呢,关于 WP 文章调用方法,包括调用最新,指定分类,随机,热文等代码,经测试,支持最新版 WordPress,这里我把代码记录下来,方便自己日后查看,也给大家参考之用。
调用最新文章

  1. <?php query_posts('showposts=6&cat=-111'); ?>  // 显示篇数和排除分类
  2. <ul>  
  3. <?php while (have_posts()) : the_post(); ?>  
  4. <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>  
  5. <?php endwhile;?>  
  6. </ul>
也想出现在这里?联系我们
创客主机

调用指定分类文章

  1. <ul>
  2. <?php
  3.     $args=array(
  4.         'cat' => 1,   // 分类ID
  5.         'posts_per_page' => 10, // 显示篇数
  6.     );
  7.     query_posts($args);
  8.     if(have_posts()) : while (have_posts()) : the_post();
  9. ?>
  10.     <li>
  11.         <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> 
  12.     </li>
  13. <?php  endwhile; endif; wp_reset_query(); ?>
  14. </ul>

调用整站随机文章

  1. <ul>
  2. <?php
  3. $args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish' );
  4. $rand_posts = get_posts( $args );
  5. foreach( $rand_posts as $post ) : ?>
  6. <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  7. <?php endforeach; ?>
  8. </ul>

调用同分类随机文章

  1. <ul>
  2. <?php
  3. $cat = get_the_category();
  4. foreach($cat as $key=>$category){
  5. $catid = $category->term_id;}
  6. $args = array('orderby' => 'rand','showposts' => 8,'cat' => $catid ); // 显示篇数
  7. $query_posts = new WP_Query();
  8. $query_posts->query($args);
  9. while ($query_posts->have_posts()) : $query_posts->the_post();?>
  10. <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  11. <?php endwhile;?>
  12. <?php wp_reset_query(); ?>
  13. </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(); ?>"><?php the_title(); ?></a></li>
  16. <?php } wp_reset_query();?>
  17. </ul>

WordPress 调用最新,随机,热门,指定分类文章

已有 259 人购买
查看演示升级 VIP立刻购买

收藏
(1)

发表回复

热销模板

Ashade - 作品展示摄影相册WordPress汉化主题
LensNews

本站承接 WordPress / PbootCMS / DedeCMS 等
系统建站、仿站、开发、定制等业务!