图像未在wordpress主题中显示

时间:2014-12-25 13:55:09

标签: php wordpress

我是制作新闻主题的新手。我试图从图像文件夹中调用图像文件夹,该文件夹位于word press的主题文件夹中,但是当我刷新页面时,所有页面都消失了,甚至没有显示任何php错误。

this is the qurrey I am applying and the image is not displaying

我想在wordpress主题中显示我的徽标,就像在图像

中一样

my wordpress theme

1 个答案:

答案 0 :(得分:1)

我认为它必须是get_template_directory_uri()而不是get_template_directory_url()(小写i而不是小写l)。

您也可以使用bloginfo。请参阅:http://codex.wordpress.org/Function_Reference/bloginfo

在你的情况下:

<img src="<?php bloginfo('template_url'); ?>/images/logo.jpg" alt="<?php bloginfo('name'); ?>">

当然,请确保您的图像位于正确的位置。