Wordpress使用timthumb调整图像大小的函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress使用timthumb调整图像大小的函数相关的知识,希望对你有一定的参考价值。
This uses the timthumb script saved as sized.php in the theme directory
// http://www.binarymoon.co.uk/2012/02/complete-timthumb-parameters-guide/ function get_thumb_src($src, $width="100", $height="100", $quality="85", $alignment="", $zoomcrop="", $filters="", $sharpen="", $canvascolor="", $transparency=""){ if($src=="") return FALSE; $src = "src=".$src; $width = "&w=".$width; $height = "&h=".$height; $quality = "&q=".$quality; return get_template_directory_uri()."/sized.php?".$src.$width.$height.$quality.$alignment.$zoomcrop.$filters.$sharpen.$canvascolor.$transparency; } function the_thumb_src($src, $width="100", $height="100", $quality="85", $alignment="", $zoomcrop="", $filters="", $sharpen="", $canvascolor="", $transparency=""){ if($thumb = get_thumb_src($src, $width, $height, $quality, $alignment, $zoomcrop, $filters, $sharpen, $canvascolo, $transparency)){ echo $thumb; } } function get_thumb($src, $alt="", $classes="", $id=""){ return "<img class='".$classes."' id='".$id."' src='".$src."' alt='".$alt."' />"; } function the_thumb($src, $alt="", $classes="", $id=""){ echo get_thumb($src, $alt, $classes, $id); } function get_main_thumb($post_id, $alt="", $classes="", $id="", $width="", $height=""){ $src = wp_get_attachment_image_src( get_post_thumbnail_id($post_id), "full", false); if($src[0]=="") return FALSE; $width = ($width!="") ? $width : "750"; $height = ($height!="") ? $height : "250"; $src = get_thumb_src($src[0], $width, $height); return "<img class='".$classes."' id='".$id."' src='".$src."' alt='".$alt."' />"; } function the_main_thumb($post_id, $alt="", $classes="", $id="", $width="", $height=""){ if($thumb = get_main_thumb($post_id, $alt, $classes, $id, $width, $height)){ echo $thumb; } }
以上是关于Wordpress使用timthumb调整图像大小的函数的主要内容,如果未能解决你的问题,请参考以下文章