我与timthumb合作过很多次,但我不知道魔法场,很抱歉,我不了解一些事情:
是否要在工具提示中放置完整分辨率这部分代码$image[\'client_image\'][2][\'original\'];
从上面的作品如果是这样,那么没有理由不在另一个div中工作无论如何,您可以直接将参数传递给timthumb,例如:
使用URL定义变量
$thumb_for_tim = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), \'single-post-thumbnail\' ) ; // or in your case - your custom field value - if it returns a URL
然后叫它
<img src="<?php bloginfo(\'template_directory\'); ?>/scripts/timthumb.php?src=<?php echo $thumb_for_tim; ?>&h=155&w=180&zc=1&f=2" alt="<?php the_title(); ?>" h & w are the height and width ..
EDIT 好的,在你的评论之后,它更清楚了。起初,当你写道;[原始决议]”;我以为你想要图像本身。在这种情况下,答案要简单得多。PHP对此有一个特殊的函数。
getimagesize()
$size = getimagesize($filename);
因此,只需将图像的URL指向$filename;
仅供参考-wordpress本身有一个获取imagesize的函数,它被称为
wp_get_attachment_image_src
像这样使用:
$image_attributes = wp_get_attachment_image_src( $attachment->ID,full );
它将返回一个数组