在POST中插入不同图像大小的图像

时间:2015-02-21 作者:Mark Winterbottom

我有一个我自己制作的自定义WordPress主题。

当我在帖子中插入图像时,我只能选择添加全尺寸图像(请参见下面的屏幕截图):enter image description here

在里面Settings > Media 我定义了许多不同的尺寸。为什么在插入图像时会出现这些选项?

enter image description here

2 个回复
SO网友:gurudeb

查看add\\u image\\u size并添加到主题的功能中。php文件:

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

SO网友:Greg Piwowarski

就像gurudeb 但请记住,您必须复制缩略图或重新上传图像,以便创建定义大小的缩略图

结束

相关推荐

Images with excerpt function

我有一个很好的摘录功能,可以让我的段落保持得体。顺便说一句,效果很好。 function pietergoosen_custom_wp_trim_excerpt($text) { global $post; $raw_excerpt = $text; if ( \'\' == $text ) { $text = get_the_content(\'\'); $text = strip_shortcodes( $text ); &#x