我有以下设置:
//设置默认值
$args = array(
\'default-image\' => get_template_directory_uri().\'/images/banner.png\',
\'random-default\' => false,
\'width\' => 960,
\'height\' => 100,
\'flex-height\' => true,
\'flex-width\' => true,
);
//启用它
add_theme_support( \'custom-header\', $args );
//使用它
<img src="<?php header_image();?>" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" alt="" />
但是
src
图像的属性为空字符串:
<img src="" height="100" width="960" alt="">
但是如果我使用
get_template_directory_uri().\'/images/banner.png\'
它工作得很好。我无法找到我丢失的东西。非常感谢。