我想你可能在寻找这样的东西:
add_theme_support( \'custom-logo\', array(
\'height\' => 480,
\'width\' => 720,
) );
您还可以选择:
add_theme_support( \'custom-header\', array(
\'height\' => 480,
\'width\' => 720,
) );
顶部徽标使用自定义页眉,页脚使用自定义徽标(反之亦然)。
另一种方法可能是define a thumbnail size:
add_image_size( \'custom-footer-logo\', 220, 220, array( \'left\', \'top\' ) );
你必须与
the WordPress customizer controls 创建控件以添加和更改页脚。但是你可以通过这种方式在你的主题中添加任意多的图像。