0

我创建了一个网站,并设置了一个带有特色图片的博客,但图片没有显示完整,它只显示了一半,即使我在 css 中更改它仍然显示一半。

如您所见,他的头没有露出

谁能帮帮我

4

1 回答 1

0

图像在代码中显示的位置:

// has_post_thumbnail() - boolean
get_the_post_thumbnail($id, $size, $attr ) // gets any thumbnail

the_post_thumbnail( $size, $attr ) // for use inside the loop
// demand a custom featured image size on upload for a custom post type.
add_image_size( 'review_type', 245, 245, true);
// call that size
the_post_thumbnail( $size, $attr ) // for use inside the loop

在媒体库中上传时,您可以选择上传图片大小。但是 WP 在上传时会创建 3 张图片,并将其中一张放入您的页面。上面的函数可以指定“小”、“中”、“大”使用哪个图像。

于 2013-08-07T01:10:01.263 回答