所以我有一个问题,我想在帖子中显示的图像不够大,并且在我的首选大小中质量很差,然后我注意到返回的图像不是默认大小,而是中等大小,我尝试检查,但没有找到任何特别的东西。
while ( have_posts() ) : the_post();
the_content();
args = array( \'post_type\' => \'attachment\', \'orderby\' => \'date\', \'order\' => \'DESC\', \'post_mime_type\' => \'image\' ,\'post_status\' => null, \'post_parent\' => $post->ID );
$attachments = get_posts($args);
$categories = get_the_category();
endwhile;