如何覆盖 Drupal 的默认 theme_table() 函数?

发布于 2024-10-18 12:51:29 字数 118 浏览 1 评论 0原文

如何在我的主题中覆盖 Drupal 核心的 theme_table() 函数?我刚刚在 template.php 文件中编写了另一个名为 theme_table() 的函数,但默认的 theme_table() 仍然有效。

How do I override the theme_table() function of the Drupal core in my theme? I just wrote another function named theme_table() in my template.php file, but the default theme_table() is still in effect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看春风乍起 2024-10-25 12:51:29

听起来你的 template.php 文件没有被读取,因为有两个同名的函数应该会触发错误。尝试将您的 theme_table() 函数重命名为 THEMENAME_table() (其中 THEMENAME 是您的主题名称)或 phptemplate_table()。

如果仍然不起作用,请尝试清除主题缓存

It sounds like your template.php file isn't being read, because having two functions with the same name should trigger an error. Try renaming your theme_table() function to THEMENAME_table() (where THEMENAME is the name of your theme) or to phptemplate_table().

If that still doesn't work, try clearing your theme cache.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文