WordPress教程

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

阿里云

关于 WordPress 文章调用方法,包括调用最新,指定分类,随机,热文等代码,经测试,支持最新版 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><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  11. <?php  endwhile; endif; wp_reset_query(); ?>
  12. </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. <?php
  2. $post_num = 10; // 设置调用条数
  3. $args = array(
  4. 'post_password' => '',
  5. 'post_status' => 'publish', // 只选公开的文章.
  6. 'caller_get_posts' => 1, // 排除置頂文章.
  7. 'orderby' => 'comment_count', // 依評論數排序.
  8. 'posts_per_page' => $post_num
  9. );
  10. $query_posts = new WP_Query();
  11. $query_posts->query($args);
  12. while( $query_posts->have_posts() ) { $query_posts->the_post(); ?>
  13. <li><?php comments_number('0', '1', '%' );?> 次评论: <br><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"><?php the_title() ?></a></li>
  14. <?php } wp_reset_query();?>

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

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

收藏
(0)

发表回复

热销模板

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

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