如何覆盖 Drupal 的默认 theme_table() 函数?
如何在我的主题中覆盖 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来你的 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.