_Content()带来中等大小的图像

时间:2014-07-03 作者:Driglou

所以我有一个问题,我想在帖子中显示的图像不够大,并且在我的首选大小中质量很差,然后我注意到返回的图像不是默认大小,而是中等大小,我尝试检查,但没有找到任何特别的东西。

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;

2 个回复
最合适的回答,由SO网友:Matt Royal 整理而成

UI可能会略有不同,具体取决于您运行的WordPess版本,但在选择插入按钮/链接之前,只需从下拉菜单中选择“全尺寸”大小的图像即可。

enter image description here

SO网友:user3535301

尝试从“特色图像”选项上载图像,并使用以下代码获取图像,您可以根据需要设置高度和宽度参数:

<a href="<?php echo get_permalink($post->ID);?>"><?php if ( has_post_thumbnail()) {
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), \'large\');
    echo \'<img class="alignleft" src="\' . $large_image_url[0] . \'" title="\' .                                           the_title_attribute(\'echo=0\') . \'" width="100px" height="100px" ">\';
}?></a>

结束

相关推荐

如何使用图片上传的getimageSize()?

我需要通过media box检查要上载的图像的分辨率,然后将其上载到自定义目录。作为起点,我使用了How Can I Organize the Uploads Folder by Slug (or ID, or FileType, or Author)?其中一部分是这样的:function wpse_25894_custom_upload_dir($path) { $use_default_dir = ( isset($_REQUEST[\'post_id\'] )