听起来您只需要指定\'post_type\'
参数\'post\'
默认情况下。
$posts = get_posts( array(
\'category\' => 16,
\'post_type\' => array( \'post\', \'{another_post_type}\', \'{another_post_type}\', \'{another_post_type}\' )
) );
您也可以考虑使用
WP_Query
而是创建自定义循环。这是一种个人偏好,但可能是你所做事情的最佳实践。