在Single.php文件中显示大小的帖子图像

时间:2017-12-05 04:24:19

标签: wordpress

我希望你做得很好, 请打开此链接 https://www.pixelstalk.net/winter-backgrounds/winter-background-for-desktop/
和屏幕截图链接在这里 http://myprintscreen.com/s/p0bp/49cbf6d290

如何在我的wordpress单帖中添加此选项以显示此高度+宽度和图像大小?

由于

1 个答案:

答案 0 :(得分:0)

高度&宽度:

尝试以下方法。首先,将这段代码添加到模板中:

$image_data = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), "full" );

$image_data现在将返回一个包含url,width和height(function reference)的数组。获得宽度和宽度身高,你可以这样做:

$image_width = $image_data[1];
$image_height = $image_data[2];

在您的具体示例中,将上述两段代码添加到模板后,您可以执行以下操作:

echo '<label class="dimension">  '.$image_width.' x '.$image_height.'</label>';

<强>尺寸:

$image_size = size_format(filesize( get_attached_file( get_post_thumbnail_id( $post->ID ), "full" ) ));

在您的模板中,按照以下方式添加:

echo '<label class="data_size"><strong>Image size: </strong>'.$image_size.'</label>';