图像不会在wordpress中显示

时间:2013-11-23 15:15:59

标签: php wordpress image visibility

所以,

我的图片位于wp-content / themes / mytheme / images

最初,当我从html / css转换我的网站时,路径看起来像这样:

<img src="images/myimage.png" alt="some text" />

这不起作用,我现在尝试了两种不同的解决方案:

<img src='<?php get_template_directory_uri(); ?>/images/myimage.png'>

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

我错过了什么吗?我是wordpress一个新手,我会很感激一些帮助。谢谢!

2 个答案:

答案 0 :(得分:1)

你几乎拥有它。你离开了echo

http://codex.wordpress.org/Function_Reference/get_template_directory_uri

输出URI

<?php echo get_template_directory_uri(); ?>

完整的结果是:

<img src='<?php echo get_template_directory_uri(); ?>/images/myimage.png'>

如果你还没有使用WP,我建议你使用Drupal。 :)

答案 1 :(得分:0)

尝试

get_stylesheet_directory(). '/images';

/images/myimage.png“&GT; 这将返回当前所选主题中的images目录路径,即使它是子主题。

Function Reference/get stylesheet directory