wordpress获取最新发表文章函数: wp_get_recent_posts()


【说明】
按发表时间检索数据库中的最新发表文章。默认检索最近十篇文章。

【用法】

  1. <?php wp_get_recent_posts( $args ) ?>

【参数】

  1. <?php
  2. $args = array(
  3. 'numberposts' => 10,
  4. 'offset' => 0,
  5. 'category' => 0,
  6. 'orderby' => 'post_date',
  7. 'order' => 'DESC',
  8. 'include' => ,
  9. 'exclude' => ,
  10. 'meta_key' => ,
  11. 'meta_value' =>,
  12. 'post_type' => 'post',
  13. 'post_status' => 'draft, publish, future, pending, private',
  14. 'suppress_filters' => true
  15. );
  16. ?>

或者传入一个(整数)将获取的文章数量

默认值: 10

【返回的值】
(数组) 跟 get_posts 不同get_posts 返回的是 objects

文章列表

【示例】
1.返回最新的10篇文章

  1. <h2>Recent Posts</h2>
  2. <ul>
  3. <?php
  4. $recent_posts = wp_get_recent_posts();
  5. foreach( $recent_posts as $recent ){
  6. echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> </li> ';
  7. }
  8. ?>
  9. </ul>

2.返回最新的5篇文章

  1. <h2>Recent Posts</h2>
  2. <ul>
  3. <?php
  4. $args = array( 'numberposts' => '5' );
  5. $recent_posts = wp_get_recent_posts( $args );
  6. foreach( $recent_posts as $recent ){
  7. echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> </li> ';
  8. }
  9. ?>
  10. </ul>
  11.  

【修改记录】
自1.1.0版本后

【源文件】
wp_get_recent_posts() is located in wp-includes/post.php.

  1. /**
  2. * Retrieve number of recent posts.
  3. *
  4. * @since 1.0.0
  5. * @uses wp_parse_args()
  6. * @uses get_posts()
  7. *
  8. * @param string $deprecated Deprecated.
  9. * @param array $args Optional. Overrides defaults.
  10. * @param string $output Optional.
  11. * @return unknown.
  12. */
  13. function wp_get_recent_posts( $args = array(), $output = ARRAY_A ) {
  14.  
  15. if ( is_numeric( $args ) ) {
  16. _deprecated_argument( __FUNCTION__, '3.1', __( 'Passing an integer number of posts is deprecated. Pass an array of arguments instead.' ) );
  17. $args = array( 'numberposts' => absint( $args ) );
  18. }
  19.  
  20. // Set default arguments
  21. $defaults = array(
  22. 'numberposts' => 10, 'offset' => 0,
  23. 'category' => 0, 'orderby' => 'post_date',
  24. 'order' => 'DESC', 'include' => '',
  25. 'exclude' => '', 'meta_key' => '',
  26. 'meta_value' =>'', 'post_type' => 'post', 'post_status' => 'draft, publish, future, pending, private',
  27. 'suppress_filters' => true
  28. );
  29.  
  30. $r = wp_parse_args( $args, $defaults );
  31.  
  32. $results = get_posts( $r );
  33.  
  34. // Backward compatibility. Prior to 3.1 expected posts to be returned in array
  35. if ( ARRAY_A == $output ){
  36. foreach( $results as $key => $result ) {
  37. $results[$key] = get_object_vars( $result );
  38. }
  39. return $results ? $results : array();
  40. }
  41.  
  42. return $results ? $results : false;
  43.  
  44. }