如何在不同的分辨率上设置特色图像

时间:2014-09-12 08:02:54

标签: php wordpress wordpress-plugin

如何在wordpress中设置不同分辨率的特色图像。我正在尝试此代码,但它不起作用。它生成完整大小的图像。

<?php
 $thumb_id = get_post_thumbnail_id();
 $thumb_url = wp_get_attachment_image_src($thumb_id,'my_image_size', true);?>
    <a href="<?php echo $thumb_url[0];?>" download="image-100x100" target="_blank">
        100x100
    </a>
 </br>

我已将此代码插入function.php add_image_size( 'my_image_size', 300,125, true );

我想看起来像this url

0 个答案:

没有答案
相关问题