Author.php不显示POST类型的帖子

时间:2012-06-14 作者:dev-jim

我注意到,第211个主题的作者。php模板只显示普通帖子中的帖子,自定义帖子类型的帖子不显示在此模板中。如何查询作者的所有帖子,而不管帖子类型如何?

我试过了

global $wp_query;       
$theauthorid  =   get_current_user_id( );
query_posts( \'author=\' . $theauthorid ); 
但它也不显示post类型post。有什么线索吗?

1 个回复
SO网友:dev-jim

好的,我知道了。。。

按查询所有岗位类型

$arg = array(\'post_type\'=> array (\'cpt\',\'post\'),);
query_posts( $arg); 

结束

相关推荐