【发布时间】:2017-06-21 13:53:30
【问题描述】:
我在我的functions.php中使用它
add_theme_support( 'post-thumbnails');
set_post_thumbnail_size();
add_image_size( 'post-thumb', 669, 272 );
在我的 single.php、home.php 和 archive.php.. 我在循环中使用它:
<?php the_post_thumbnail('post-thumb'); ?>
现在,当我将帖子分享到linkedin 时,我使用了 669 x 272 尺寸的缩略图,但我想制作另一个自定义尺寸的缩略图,例如 180 x 110 大小 n 强制linkedin 使用该缩略图。
提前致谢。
【问题讨论】: