2011-07-08 46 views

回答

0

使用下面的代碼:

$args = array(
    'numberposts'  => 1, 
    'offset'   => 0, 
    'category'  => , 
    'orderby'   => 'post_date', 
    'order'   => 'DESC', 
    'include'   => , 
    'exclude'   => , 
    'meta_key'  => , 
    'meta_value'  => , 
    'post_type'  => 'post', 
    'post_mime_type' => , 
    'post_parent'  => , 
    'post_status'  => 'publish'); 

$posts = get_posts($args); 

你可以找到在$posts文章的標題。 通過在參數列表中更改order,您可以獲取最新或最後一篇文章。

編號:http://codex.wordpress.org/Template_Tags/get_posts

相關問題