最新帖子的高階短程式碼
此函式接受你要顯示的最近帖子數量的引數。
例如:你只想顯示最近的五篇帖子。剛剛傳遞了 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"]' );