有多种方法可以获取自定义帖子类型的帖子,具体取决于您希望在哪里使用结果。
如果您得到的结果是为了处理您可以使用的数据get_posts
$args = array(
\'numberposts\' => 10,
\'status\'=> \'publish\'
\'post_type\' => \'my_post_type\'
);
$posts = get_posts( $args );
foreach($posts as $post) {
//Write code here
}
如果您试图在模板中显示您的帖子,那么您可以遵循@dhl17的建议