我正在修改footer.php文件,我想从我的图库中添加一些图片。 这就是我的工作:
<img src="<?php bloginfo('template_directory'); ?>/images/googleplay_button.png" />
网页上会显示正确的链接,但显示的是链接本身,而不是图片。
非常感谢任何帮助
更改为get_template_template_uri()
后,这是源代码:
<img src="http://domain.com/promo/wp-content/themes/Divi/images/googleplay_button.png" height="43" width="140"/>
问题是,我正在使用一个名为&#34; divi-child&#34;的儿童主题。所以这就是必须解决的问题。
答案 0 :(得分:2)
你需要使用
get_template_directory_uri();
所以你的代码看起来像这样
<img src="<?php echo get_template_directory_uri(); ?>/images/googleplay_button.png" alt="">
您可以了解更多here:::