我想使用闪耀主题更改标题的大小。在函数中。php,就在下面:
/**
* Implement the Custom Header feature.
*/
我添加了以下内容:
add_theme_support( \'custom-header\' );
下面是我从自定义标题粘贴的内容。php:
function sparkling_custom_header_setup() {
add_theme_support(
\'custom-header\',
apply_filters(
\'sparkling_custom_header_args\',
array(
\'default-image\' => \'\',
\'default-text-color\' => \'dadada\',
\'width\' => 300,
\'height\' => 76,
\'flex-height\' => true,
\'flex-width\' => true,
\'wp-head-callback\' => \'sparkling_header_style\',
\'admin-head-callback\' => \'sparkling_admin_header_style\',
\'admin-preview-callback\' => \'sparkling_admin_header_image\',
)
)
);
}
但是定制宽度和高度没有任何作用。我还尝试设置一个“灵活的标题”,并将不同的数组模板粘贴到函数中。php以及该标题。php:
<img src="<?php header_image(); ?>" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" alt="" />
我在不同的位置/排列中尝试了后几行代码,以替代标头中已经存在的一些外观非常相似的代码。php,以及除此之外的代码。还是没什么。