Wordpress Custom Logo大小调整

时间:2017-11-21 14:15:40

标签: php wordpress custom-theme

我正在尝试在Wordpress自定义主题中生成徽标。我可以让它出现,但我不能让它调整大小。除了我现在所拥有的,我还尝试了" add_image_size()"功能,但它也没有用。我目前的代码是:

    <?php
    function mytheme_setup() {

    add_theme_support( 'custom-logo', array(
       'height'      => 100,
       'width'       => 77,
       'flex-width' => true,
    ) );
    }

    add_action('after_setup_theme', 'mytheme_setup');
    ?>

1 个答案:

答案 0 :(得分:0)

在添加新的缩略图尺寸后,您需要在网站上重新生成缩略图,Wordpress不会自动为您执行此操作。

安装并运行此插件:Regenerate Thumbnails