如何将wp_get_recent_post与多种帖子类型一起使用? 时间:2016-11-19 作者:Michael Rogers 我尝试过显示许多帖子类型(用逗号分隔),但都不起作用。有没有办法做到这一点?$args = array( \'numberposts\' => \'5\', \'post_type\' => \'cpt1, cpt2, cptn\'); $recent_posts = wp_get_recent_posts( $args ); 感谢您的投入。 1 个回复 最合适的回答,由SO网友:Ranuka 整理而成 将post类型用作数组。$args = array( \'numberposts\' => \'5\', \'post_type\' => array(\'cpt1\', \'cpt2\', \'cptn\') ); $recent_posts = wp_get_recent_posts( $args ); 文章导航