Wordpress 3.8图像路径到图像文件夹不起作用

时间:2014-03-04 00:22:59

标签: php wordpress image filepath

这似乎已被问过,但答案不同。

我将图片文件夹“ images ”放在与我想要添加图片的 page.php 文件相同的目录中。然而,路径“ images / foldername / image.gif ”不会在页面上产生任何图像。从非wordpress html文件那条路径起作用,那么这个答案是什么呢?是什么让wordpress不理解文件路径,假设我没有错过什么?

还尝试使用斜杠进行/图像以防万一。

2 个答案:

答案 0 :(得分:1)

您可以使用:

echo get_bloginfo('template_url') . 'images/imagename.png';

或者

<img src="<?php bloginfo('template_url'); ?>/images/img.png" />

bloginfoget bloginfo。另请阅读this article

答案 1 :(得分:0)

你的意思是在WordPress主题文件夹中?如果是,则正确路径为http://www.domain.com/subdirectory/wp-content/themes/yourtheme_name/images

您可以使用<?php get_template_directory_uri(); ?>/images/foldername/image.gif

get_template_directory_uri()