Limit image upload to 10 时间:2012-06-18 作者:Antonio 基于this previous WPSE question:我尝试限制10个文件,但没有成功:if ( count( get_posts( "post_type=attachment&post_parent={$post_id}" ) ) > 10 ) 如何将其限制为10幅图像?谢谢 1 个回复 SO网友:HungryCoder 给你:get_posts(array(\'post_type\'=>\'attachment\', \'numberposts\' => 10, \'post_parent\' => $post_id)); 这将返回最多10个帖子。 结束 文章导航