如何在Wordpress中将图像插入到模板中?
问题描述:
我想从我的HTML/CSS模板1日重新编码到WordPress的,但我不记得如何插入在PHP如何在Wordpress中将图像插入到模板中?
图像。例如HTML:
<img src="img/imageOne.jpg">
和PHP?
答
你有这样的用户WordPress的功能,
<img src="<?php echo get_template_directory_uri(); ?>/img/imageOne.jpg">
检查get_template_directory_uri()更多的参考。
答
图像添加在WordPress模板
<img src="<?php echo esc_url(get_template_directory_uri()); ?>/img/imageOne.jpg"/>
@ROCKY:如果你有答案,请做upvote。谢谢..!! – Virb