在wordpress儿童主题中创建一个图像文件夹

Nic*_*ick 3 wordpress

我已经设置了一个儿童主题.是否可以通过FTP在我的服务器上添加一个文件夹(最好是在同一个子主题文件夹中)img,然后从我的页面和帖子链接到该文件夹​​中的图像?

我尝试使用此路径:

<img src="../wp-content/themes/theme-child/img/placeholder.png"/>
Run Code Online (Sandbox Code Playgroud)

但那没用.

Aib*_*ean 10

您需要使用样式表目录.使用子主题,如果您使用模板目录,它将转到父目录(请参阅http://codex.wordpress.org/Function_Reference/get_stylesheet_directory_uri上的说明).

它应该是 <img src="<?php echo get_stylesheet_directory_uri(); ?>/img/placeholder.png" />