Drupal 模板覆盖
由 hook_theme 中的 tpl.php 模板文件输出的一个模板(例如:book-navigation.tpl.php)。我可以使用预处理函数在我的主题文件 template.php 中覆盖它吗?如果可以的话,您能给我一个如何做的例子吗?
One template which is output by a tpl.php template file in hook_theme (eg:book-navigation.tpl.php). Could i use the preprocess function to overwrite it in my theme file template.php? If I can, could you give me an example of how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将此代码添加到 template.php 中:
将 book-navigation.tpl.php 复制到您的主题文件夹。
创建 book-navigation-spec.tpl.php (从第一个文件获取源代码),并写入您的更改。
清除缓存。
Add this code into template.php:
Copy book-navigation.tpl.php to your theme folder.
create book-navigation-spec.tpl.php (take source from first file), and write your changes.
Clear cache.