我的自定义页眉不会更改页眉图像的高度和宽度

时间:2019-09-13 作者:Lucifer Levi

这是我在函数中的代码。php

$custom_header_args=array(
    \'default-image\'          => \'\',
    \'width\'                  => 500,
    \'height\'                 => 500,
    \'flex-height\'            => true,
    \'flex-width\'             => true,
    \'uploads\'                => true,
    \'random-default\'         => false,
    \'header-text\'            => true,
    \'default-text-color\'     => \'\',
    \'wp-head-callback\'       => \'\',
    \'admin-head-callback\'    => \'\',
    \'admin-preview-callback\' => \'\',
);
add_theme_support( \'custom-header\' ,$custom_header_args);
这是标题中的代码。php

<img src="<?php header_image(); ?>" height="<?php get_custom_header()->height ?>" width="<?php get_custom_header()->width; ?>" alt="">
<?php wp_nav_menu( array(\'theme_location\'  => \'primary\') ); ?>
我的问题是它不会改变我头部图像的高度和宽度。问题是什么?

1 个回复
SO网友:Tanmay Patel

您忘记了“回声”高度(&E);图像编码中的宽度。您的标题代码如下所示。

<img src="<?php header_image(); ?>" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" alt="">
<?php wp_nav_menu( array(\'theme_location\'  => \'primary\') ); ?>
检查此参考https://codex.wordpress.org/Custom_Headers

相关推荐

ADD_THEME_SUPPORT(‘CUSTOM-HEADER’)不在仪表板中添加选项菜单

我正在根据工具箱主题从头开始写一个新主题。我的WP安装是开箱即用的。我添加了add\\u theme\\u支持(“custom-header”);我的职能。php文件,但“标题”选项屏幕不会显示在仪表板中。如果我访问该站点,我可以在顶部的工具栏中看到它,但不能在仪表板中看到它。我错过什么了吗?