我的网站在Chrome中显示徽标,但在Firefox上无法显示。
我的网站位于http://nausal.com/test/。
以下是header.php
中我的徽标图片的代码:
<div class="logo">
<h1><a href="<?php echo get_option('home'); ?>/"><img src="<?php echo get_option('home'); ?>/\wp-content\themes\avatar\images/logo.png" title="Return to Home." alt="IMAGE TEXT."/></a></h1>
答案 0 :(得分:1)
在图片路径中使用斜杠/
而不是反斜杠\
:
<h1><a href="<?php echo get_option('home'); ?>/"><img src="<?php echo get_option('home'); ?>/wp-content/themes/avatar/images/logo.png" title="Return to Home." alt="IMAGE TEXT."/></a></h1>