gpt4 book ai didi

Drupal 7 - 将图像添加到 node.tlp.php 主题文件

转载 作者:行者123 更新时间:2023-12-02 03:14:00 27 4
gpt4 key购买 nike

我正在尝试添加一个图像(小箭头 gif 图标),该图像已上传到我的 Drupal 主题文件中的图像目录 (root/sites/all/themes/mytheme/images)。

以下内容在 page.tlp.php 级别工作,并且也在 field.tlp.php 级别工作 - 但它在 node.tlp.php 中不起作用。 node.tlp.php 文件工作正常,但图像不显示!如果我将完全相同的代码粘贴到其他上述模板中,它会显示..??

<img src="<?php print base_path() . path_to_theme(); ?>/images/arrow-right.gif" width="20" height="13" alt="Arrow Right">

有什么想法应该如何在 node.tlp.php 文件中引用图像吗?

谢谢!

最佳答案

使用drupal_get_path()而不是path_to_theme()可能有效,值得一试

<img src="<?php print base_path() . drupal_get_path('theme', 'THEMENAME'); ?>/images/arrow-right.gif" width="20" height="13" alt="Arrow Right">

这是建议的Here

关于Drupal 7 - 将图像添加到 node.tlp.php 主题文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5353801/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com