使用get_posts()
或过滤器\'pre_get_posts\'
在头版。
的示例代码get_posts()
:
$my_post_array = get_posts(
array (
\'post_type\' => array ( \'post\', \'custom_type\' )
)
);
foreach ( $my_post_array as $post )
{
// do something awesome …
}
还有一些参数用于按元字段等自定义顺序。过滤器打开
\'pre_get_posts\'
可以做同样的事情,甚至更多。它只是不那么容易阅读。