我正在使用
add_theme_support(\'custom-logo\', array(
// The logo will be displayed with the following sizes:
\'width\' => 200,
\'height\' => 200,
));
在侧边栏中显示徽标图像。
在函数中。php我已经设置了大徽标的大小:
add_theme_support(\'custom-logo\', array(
// The logo will be displayed with the following sizes:
\'width\' => 200,
\'height\' => 200,
));
然而,我也想在标题中使用相同的徽标,但大小为80x80px。这意味着我需要为
the_custom_logo
. 这可能吗?如果是,怎么做?
我试过使用add_image_size
但我认为这是错误的,所以我真的不知道该怎么做。