我在我的functions.php文件中添加了一个名为add_theme_support('custom-header');
的函数。转到外观->自定义标题后,上传我的文件后,它拒绝显示在我的网站上。如果我检查我的Wordpress管理面板,则该图像在用户界面上一天都清晰可见,但由于任何原因将不会显示在我的网站上?
Header.php代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Wordpress Theme</title>
<?php wp_head();?>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600" rel="stylesheet">
</head>
<?php wp_nav_menu(); ?>
<body <?php body_class();?>
<img alt="" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>">
答案 0 :(得分:0)
您是否检查过CSS,但标题图像的类或ID上没有“显示:无/隐藏”?
您可以通过检查元素再次检查。