我如何在 Block Body Drupal 7 中添加图像的相对路径?

How i can add relative path of image in Block Body Drupal7?

以前我的图像存在于 default/files 文件夹中,我想将它们移动到特定主题的图像中。之前我通过访问它们,但我现在想在块体中提供主题图像文件夹的相对路径。

任何人都可以指导如何实现它。我假设我的文件夹不在根级别,所以 <img src="/sites/all/themes/.." > 将不起作用。

参考this answer you should use base_path() function and path_to_theme()

示例:

<img src="<?php print base_path() . path_to_theme() .'/' ?>images/img.jpg" />