如何将图片放入Header.php? 时间:2013-01-04 作者:qadenza 我正在尝试定制“二十十”主题这是标题的一部分。php:<body <?php body_class(); ?>> <div id="wrapper" class="hfeed"> <div id="header"> <img id="topL" src="images/img01.png"/> //this img I cannot insert ! </div><!-- #header --> 没有错误。简单地说,什么都没有发生。 1 个回复 最合适的回答,由SO网友:s_ha_dum 整理而成 不要使用相对URL。如果查看源文件,则可能要从中加载图像http://sitename.com/images/ 当你想要的是http://sitename.com/wp-content/themes/themename/images/. 假设图像位于与共享目录的文件夹中的主题目录中style.css, 执行以下操作:<img id="topL" src="<?php echo get_stylesheet_directory_uri(); ?>/images/img01.png"/> http://codex.wordpress.org/Function_Reference/get_stylesheet_directory_uri 结束 文章导航