问题:Drupal7下如何在page.tpl.php里输出图片?
回答:
方法有很多,举2个例子:
方法1,使用theme()函数:
print theme("image", array( 'path' => path_to_theme() . "'/img/img.jpg", 'width' => "240", 'height' => "300", ));
方法2,直接用img标签(这种方法一般不推荐):
global $base_path; print "<img src='" . $base_path . path_to_theme() . "/img/img.jpg' width='240' height='300' />";
相关链接: