开发者

WordPress problem with force image resize using timthumb?

开发者 https://www.devze.com 2023-03-15 12:59 出处:网络
All Now i am using Timthum for resize the feature images, i want to resize with fixed width and height, bu开发者_如何学编程t here the image size was crop, here is my code.

All

Now i am using Timthum for resize the feature images, i want to resize with fixed width and height, bu开发者_如何学编程t here the image size was crop, here is my code.

<?php 
       $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 300,300 ), false, '' ); 

     $thumbnailSrc = $src[0]; 

?>
<img src="<?php bloginfo('template_directory'); ?>/timthumb.php?src=<?php echo $thumbnailSrc; ?>&h=256&w=400" alt="" />
0

精彩评论

暂无评论...
验证码 换一张
取 消