0
有沒有辦法查詢多個特定的帖子?例如,下面得到一個:WordPress的 - query_posts
// retrieve one post with an ID of 670
query_posts('p=670');
但據我所知,我不能擴大此做兩個職位,用逗號分隔。有誰知道更好的方法?
有沒有辦法查詢多個特定的帖子?例如,下面得到一個:WordPress的 - query_posts
// retrieve one post with an ID of 670
query_posts('p=670');
但據我所知,我不能擴大此做兩個職位,用逗號分隔。有誰知道更好的方法?
這應該工作:
query_posts(array('post__in' => array(670, 671, 672)));
來源: http://codex.wordpress.org/Function_Reference/query_posts#Post_.26_Page_Parameters
輝煌!謝謝。一旦時間限制到達,我會批准。 – Matrym 2010-06-25 00:55:57