我有主题,它是名称(汽车),并且在 page.tpl.php 中有图像链接,我想用简短的方式显示这个图像,任何人都可以帮助我..大多数这种方式到 node.tpl.php 但我需要使用 page.tpl.php 显示图像
<img src="rightgallery/img/img1_thumb.jpg" alt="motherly" />
我尝试在 template.php 文件中添加此代码
// helper variable path to theme
function car_preprocess_page(&$vars) {
$vars['thefullpath'] = $GLOBALS['base_url'] . "/" . $GLOBALS['theme_path'];
}
然后像这样打印路径但仍然没有工作
<img src="<?php print $thefullpath; ?>rightgallery/img/img1_thumb.jpg" alt="motherly"
>