从今天开始,我开始学习wordpress的自定义主题开发,而且当我尝试裁剪标题的图像时,我目前仍然遇到显示错误的问题。以下是示例代码。
(1.我已经将头部图像的钩子设置为functions.php
.slider2 img:first-of-type {
display: block;
}
(2.设置header.php内的图像
add_theme_support('custom-header');
(3.如果图像将显示在标题内,则表示。图像以实际尺寸显示。
如何在Customize中自定义标题图像?我很乐意听取您的意见。
答案 0 :(得分:3)
flex-width
& flex-height
会自行调整,
$args = array(
'flex-width' => true,
'width' => 980,
'flex-height' => true,
'height' => 200,
'default-image' => get_template_directory_uri() . '/images/header.jpg',
);
add_theme_support( 'custom-header', $args );
更新你的header.php
<img alt="" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" />