最新帖子的高级短代码

此函数接受你要显示的最近帖子数量的参数。

例如:你只想显示最近的五篇帖子。刚刚传递了 posts =5 的参数(你可以传递你想要显示的任意数量的最近帖子)。

函数仅从数据库中获取五个最近的帖子。

// recent-posts is going to be our shortcode.
add_shortcode('recent-posts', 'recent_posts_function');

// Functions takes parameter such as posts="5".
function recent_posts_function($atts){
   extract(shortcode_atts(array(
      'posts' => 1,
   ), $atts));

   $return_string = '<ul>';
   query_posts(array('orderby' => 'date', 'order' => 'DESC' , 'showposts' => $posts));
   if (have_posts()) :
      while (have_posts()) : the_post();
         $return_string .= '<li><a href="'.get_permalink().'">'.get_the_title().'</a></li>';
      endwhile;
   endif;
   $return_string .= '</ul>';

   wp_reset_query();
   return $return_string;
}

例如。 echo do_shortcode( '[recent-posts posts="5"]' );