print_thumbnail在wordpress中表现不佳

时间:2012-11-01 06:03:57

标签: php html css wordpress

print_thumbnail(
 $arr[$i]["thumb_small"], $arr[$i]["use_timthumb"], 
 $arr[$i]["fulltitle"] ,$width_small,$height_small
);

返回图片标记

src="/domains/web2760/web//wp-content/uploads/2012/01/Gates-124086_132x58.jpg" 

而不是

src="/wp-content/uploads/2012/01/Gates-124086_132x58.jpg"

请帮助我

1 个答案:

答案 0 :(得分:1)

不要使用print_thumbnail,这是一个内部WP函数,你必须使用get_the_post_thumbnail:

http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail

或者如果你在循环中,你可以使用the_post_thumbnail:

http://codex.wordpress.org/Function_Reference/the_post_thumbnail