特色图像不显示与裁剪,如何显示它?

时间:2017-03-11 作者:Nayeem Hyder Riddhi

我试图用裁剪来显示特征图像。我的functions.php 代码为

add_theme_support(\'post-formats\', array(\'post\'));
add_theme_support(\'post-thumbnails\');

add_image_size(\'post-image\', 750, 400, true);
还有我的index.php 代码为

<img src="<?php $image =wp_get_attachment_image_src(get_post_thumbnail_id
          ($post->ID), \'post-image\' ); echo $image[0] ?>" alt="" />
如何在帖子中通过裁剪显示我的图像。谢谢

1 个回复
SO网友:Khuram

将这一行放在函数中。php

添加\\u主题\\u支持(“张贴缩略图”);

并将此代码用于imageif(has\\u post\\u thumbnail()){the\\u post\\u thumbnail();}

相关推荐