Wordpress标题图像不会在IE中显示

时间:2012-06-04 20:21:53

标签: image wordpress internet-explorer header

标题中的图像显示在Safari,FFX和Opera中,但IE中的不是(在9,顺便说一句)。

不确定这是否重要,但在使用IE的开发人员工具时,它会在整个地方显示“空文本节点”。

我甚至不知道附加到这篇文章的其他代码......请告诉我。

网站网址:http://glassinfusion.accountsupport.com/

标题代码:

<!DOCTYPE html>
<html <?php language_attributes(); ?>>

<head>
    <meta charset="<?php bloginfo('charset'); ?>" />

    <?php if (is_search()) { ?>
       <meta name="robots" content="noindex, nofollow" /> 
    <?php } ?>

    <title>
           <?php
              if (function_exists('is_tag') && is_tag()) {
                 single_tag_title("Tag Archive for &quot;"); echo '&quot; - '; }
              elseif (is_archive()) {
                 wp_title(''); echo ' Archive - '; }
              elseif (is_search()) {
                 echo 'Search for &quot;'.wp_specialchars($s).'&quot; - '; }
              elseif (!(is_404()) && (is_single()) || (is_page())) {
                 wp_title(''); echo ' - '; }
              elseif (is_404()) {
                 echo 'Not Found - '; }
              if (is_home()) {
                 bloginfo('name'); echo ' - '; bloginfo('description'); }
              else {
                  bloginfo('name'); }
              if ($paged>1) {
                 echo ' - page '. $paged; }
           ?>
    </title>

    <link rel="shortcut icon" href="/favicon.ico">

    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">

    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">

    <link rel="icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" type="image/x-icon" />
    <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" type="image/x-icon" />

    <?php if ( is_singular() ) wp_enqueue_script('comment-reply'); ?>

    <?php wp_head(); ?>
</head>



<body>
<div id="wrapper">
<div id="header">

    <!-- start logo -->

 <h1><a href="<?php echo get_option('home'); ?>/"><span><?php bloginfo('name'); ?></span>
       <img src="<?php bloginfo('template_directory'); ?>/images/logo3.jpg" width="" height=""alt="<?php bloginfo('name'); ?>"/> 
        </a></h1> 

     <!-- End Logo -->


<?php
        /* A sidebar on top of the content? Yep. You can can customize
         * your top with three columns of widgets.
         */
        get_sidebar('navigation');
?>


</div><!--end header -->


<!-- start middle -->
<div id="middle">

1 个答案:

答案 0 :(得分:0)

对于那些没有显示的图像,尝试使用不同格式的图像,如gif而不是jpg。