我自己做了,但我只包括了基本参数。只需将此代码放在主题的functions.php
文件您需要更新timThumb的路径。
// [timThumb id="123" w="300"]
function timThumb_func( $atts ) {
extract( shortcode_atts( array(
\'id\' => \'\',
\'w\' => \'\',
\'h\' => \'\',
\'q\' => \'90\'
), $atts ) );
$timThumbPath = \'Path/to/timThumb.php\';
$image = wp_get_attachment_image_src( $id );
if(!$image) {
return
} else {
return \'<img src="\'.$timThumbPath.\'?src=\'.$image[0].\'&w=\'.$w.\'&h=\'.$h.\'&q=\'.$q.\'" />\';
}
}
add_shortcode( \'timThumb\', \'timThumb_func\' );