我正在将预编码网站转换为基于wordpress的网站。
目前所有网址均为img/file_name
在wordpress中使用带有3个函数的基本page.php
get_header() get_body() get_footer()
,其中我的页面被分成3个部分,中间内容被制作成wordpress页面帖子。
中间内容通常包含图片,如何正确链接到它们?
我应该把img文件夹放在哪里,我应该调用哪条路径,我不知道我在哪里引用wordpress是动态的。
目前img在我的主题目录中并且图像丢失了。它们是否与我主题中的page.php无关?
答案 0 :(得分:0)
您应该将图像放在wp-content/uploads
文件夹中。
您想使用“http://www.yoursite.com/wp-content/uploads/2014/01/yourimage.jpg
答案 1 :(得分:0)
Wordpress允许您在添加/编辑文章和帖子时add pictures(以及更多)
看看 - > http://codex.wordpress.org/Using_Images还包括处理主题中的图像。
答案 2 :(得分:0)
如果图像位于主题文件夹中,则可以使用get_stylesheet_directory_uri()函数。
<img src="<?php echo get_stylesheet_directory_uri() . '/img/whatever.jpg; ?>"/>
http://codex.wordpress.org/Function_Reference/get_stylesheet_directory_uri