GOOGLE显示:
火狐显示如下:
opera显示如下:这是
图片显示源代码(wordpress):<a href="<?php the_permalink() ?>">
<img class="postimg" src="<?php get_image_url(); ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>"/></a>

解决方案 »

  1.   

    火狐下用firebug看看路径是否对了。
      

  2.   

    我刚看了下,
    原始路径是
    路径在ie下是:
    http://localhost/wordpress/wp-content/uploads/2012/06/images3.jpg
    在火狐下是:
    http://localhost/wordpress/wp-content\uploads/2012/06/images3.jpg
    这个路径有点问题,
    本来可以用replace替换\的
    但是
    <?php get_image_url(); ?> 是直接输出来的就像echo xxxx一样,这样的话没办法获取或url的路径,
    如果用js 的话只能修改一次,如果是循环就无效果了
      

  3.   

    找到你的 get_image_url() 函数,在里面替换。