我需要在Wordpress中计算图像的文件大小。我用这个函数检索图像URL:
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
和
<?php echo $image[0]; ?>
我打印图片网址。
如何检索文件大小并进行打印?
Here是feed-rss2.php文件
由于
答案 0 :(得分:1)
这应该有效:
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
$img = get_headers($image[0], 1);
echo $img["Content-Length"]/1024;
以上将以kb打印图像的大小。