在header.php中指定的路径后未显示的图像

时间:2016-09-18 作者:HubCap

我正在开发一个基于使用推特引导开发的主题的WordPress网站。我在我的header.php 它加载在每页的顶部。

Added the image path

在对header.php 要包括路径

<img src="<?php echo get_stylesheet_directory();?>/images/headerbg.jpg" alt="the image is not showing" class="img-responsive center-block"/>
我的图像仍不显示,并且显示了alt标记

enter image description here:

Confirming the image path is correct and working

直接使用浏览器中的计算代码时,我可以访问图像:

enter image description here

1 个回复
最合适的回答,由SO网友:bravokeyl 整理而成

使用get_stylesheet_directory_uri() 而不是get_stylesheet_directory().

<img src="<?php echo get_stylesheet_directory_uri();?>/images/headerbg.jpg" ..../>
get_stylesheet_directory_uri() 返回样式表目录的URI,其中get_stylesheet_directory() 将服务器上的路径返回到样式表目录。

相关推荐