Add custom post type to query

时间:2011-08-15 作者:Jason

$saved = $wp_query; query_posts(array(\'tag__in\' => $tag_array, \'showposts\' => $args[\'posts_per_page\']));
我需要这个来查询标准帖子和一个名为“property”的自定义帖子类型

当我试图包含另一个数组时,我似乎无法让它显示自定义帖子类型的任何内容。

有什么想法?

1 个回复
最合适的回答,由SO网友:Wyck 整理而成

您需要包括post_type=.
您的查询将是一个帖子类型数组,因为您需要2\'post_type\' => array( \'post\', \'property\')
http://codex.wordpress.org/Class_Reference/WP_Query#Type_.26_Status_Parameters

结束

相关推荐

Check if jquery library exist

如何检查头标记中是否存在jQuery库?<head> <script type=\"javascript/text\" src=\"http://code.jquery.com/jquery-1.6.2.js\"></script> </head> 如果不存在,我如何在jquery库的头标签中加载,我正在做一个插件,我想在jquery中加载我的插件脚本,并且能够检查jquery库是否存在,这样我的jquery脚本就会运行