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

wordpress调用不同文章的分类目录

发布:smiling 来源: PHP粉丝网  添加日期:2018-12-06 10:09:47 浏览: 评论:0 

调用该分类目录下所有文章及其链接

一、带分页的

将“news”改为自己需要的分类目录的名称即可调用改分类下所有的文章链接,调用目录分页需要一个wordpress插件wp-pagenavi链接:https://pan.baidu.com/s/1o7DFyCq 密码:xbxp

  1. <?php    
  2.  
  3. $order_by = 'comment_count';  
  4.  
  5.  
  6.  
  7. $order = 'DESC';  
  8.  
  9.  
  10.  
  11. $posts_per_page = 5;  
  12.  
  13.  
  14.  
  15. $cat = get_cat_id('news');       
  16.  
  17.      
  18.  
  19. global $post
  20.  
  21. $post_title = $post->post_title; 
  22.  
  23. $post_content = apply_filters('the_content'$post->post_content) 
  24.  
  25. ?>   
  26.  
  27. <?php 
  28.  
  29. $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; 
  30.  
  31.  
  32.  
  33. $post_list = new WP_Query( 
  34.  
  35.     "posts_per_page=" . $posts_per_page . 
  36.  
  37.     "&orderby=" . $order_by . 
  38.  
  39.     "&order=" . $order . 
  40.  
  41.     "&cat=" .get_cat_id('news'). 
  42.  
  43.     "&paged=" . $paged 
  44.  
  45. ); 
  46.  
  47. $total_posts = $post_list->found_posts; 
  48.  
  49. ?> 
  50.  
  51.         <?php if ( $post_list->have_posts() ) : ?> 
  52.  
  53.     <div class="entry-content"
  54.  
  55.         <ul class="news-list"
  56.  
  57.         <?php while ( $post_list->have_posts() ) : $post_list->the_post(); ?> 
  58.  
  59.             <li> 
  60.  
  61.                 <!-- 带连接的文章标题 --> 
  62.  
  63.                 <strong><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a></strong> 
  64.  
  65.                 <span><?php the_field('wenzhang-time');?></span> 
  66.  
  67.                 <!-- 显示评论数 -->                            
  68.  
  69.                 <!-- 显示发布日期 --> 
  70.  
  71.                <p> <?php echo mb_strimwidth(strip_tags(apply_filters('the_content'$post->post_content)), 0, 270,"……"); ?></p> 
  72.  
  73.       
  74.  
  75.             </li> 
  76.  
  77.         <?php endwhile; ?> 
  78.  
  79.         </ul> 
  80.  
  81.           
  82.  
  83.         <!-- 用wp_pagenavi插件分页 --> 
  84.  
  85.         <?php if ( function_exists('wp_pagenavi') ) wp_pagenavi( array('query' => $post_list) );  ?> 
  86.  
  87.           
  88.  
  89.     </div><!-- .entry-content --> 
  90.  
  91.     <!-- 文章列表显示结束 --> 
  92.  
  93.                           
  94.  
  95. <?php endif; ?> 

二、不带分页

将“news”改为自己需要的分类目录的名称即可调用改分类下所有的文章链接

  1. <?php   
  2.  
  3.     $args=array(   
  4.  
  5.         'cat' => get_cat_id('news'),   // 分类ID   
  6.  
  7.         'posts_per_page' => 1000, // 显示篇数   
  8.  
  9.     );   
  10.  
  11.     query_posts($args);   
  12.  
  13.     if(have_posts()) : while (have_posts()) : the_post();   
  14.  
  15. ?>   
  16.  
  17.     <li>   
  18.  
  19.         <strong><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></strong> <span><?php the_field('wenzhang-time');?></span> 
  20.  
  21.         <p>   
  22.  
  23.         <?php if (has_excerpt()) {   
  24.  
  25.                 echo $description = get_the_excerpt(); //文章编辑中的摘要   
  26.  
  27.             }else {   
  28.  
  29.                 echo mb_strimwidth(strip_tags(apply_filters('the_title();'$post->post_title)), 0, 27,"…");  
  30.  
  31.             } ?>   
  32.  
  33.         </p>   
  34.  
  35.     </li>   
  36.  
  37.      
  38.  
  39. <?php  endwhileendif; wp_reset_query(); ?>  

Tags: 不同文章 分类目录

分享到: