有人可以帮我解决以下问题。
我怎么能回声"文字"只有在wordpress中附加的缩略图分辨率超过500px x 500px?
如果附加的缩略图大于指定的图像分辨率,我想回显链接。
感谢。
答案 0 :(得分:1)
找到解决方案
<?php $imgdata = wp_get_attachment_image_src( get_post_thumbnail_id(), 'thumbnail' );
$imgurl = $imgdata[0]; // the url of the thumbnail picture
$imgwidth = $imgdata[1]; // thumbnail's width
$imgheight = $imgdata[2]; // thumbnail's height
if ($imgwidth >= 200 || $imgheight >= 200){
echo 'Success';
} else {
echo "Nope";
}?>
答案 1 :(得分:0)
试试这个:
$size = imagegetsize($image);
if ($size[0] <= 500 || $size[1] <= 500){
echo "text";
} else {
echo "<img src=...>"
}