这似乎是一个非常基本的问题,但我一直在谷歌上搜索,无法得到一个好的答案。
给定 站点/所有/主题/ phppos / IMG / demo.png
创建图像的正确方法是什么?首页 - front.tpl.php?
我试过以下内容:(我得到modules / system / img / demo.png)
<?php echo theme('image', array('path' => path_to_theme() .'/img/demo.png')); ?>
答案 0 :(得分:1)
您获得了modules/system/img/demo.png
作为结果路径,因为您正在调用path_to_theme()
函数中的theme()
函数。
根据documentation for path_to_theme()
:
...在主题调用范围内调用时,它将依赖于 处理主题功能的地方。