致命错误模板标签

发布于 2025-01-12 09:38:06 字数 475 浏览 0 评论 0原文

我正在开发一个旧的 WordPress 网站。尽管该网站已更新到最新版本的 WordPress (5.9.1),但它显​​然是建立在thyfouteen 主题之上的。

最近,我在帖子页面上遇到致命错误:

Fatal error: Uncaught Error: Call to undefined function twentyfourteen_categorized_blog()

该函数位于 template-tags.php 文件中,并且它存在,因此主题应该能够访问它。事实上,我在任何调用二十四函数的页面上都会遇到致命错误。

我将函数从 template-tags.php 复制到 content.php,它实际上加载了帖子,但随后给了我一个不同的错误 Cannot redeclare二十四青少年_categorized_blog()

我从来没有必要解决这种错误由于主题很旧,我不知道如何去做。

I am working on an old WordPress site. Although the site is updated to the latest version of WordPress (5.9.1) it was apparently built on the twentyfouteeen theme.

Just lately, I am getting a fatal error on the Posts Page:

Fatal error: Uncaught Error: Call to undefined function twentyfourteen_categorized_blog()

The function is located in the template-tags.php file and it exists so the theme should be able to access it. In fact, I'm getting the fatal error on any page that calls a twentyfourteen function.

I copied the functions from template-tags.php to content.php which did in fact load posts but then gave me a different error Cannot redeclare twentyfourteen_categorized_blog()

I've never had to troubleshoot this kind of error and since the theme is old, I'm not sure how to go about it.

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

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

发布评论

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

评论(2

残龙傲雪 2025-01-19 09:38:06

“无法重新声明twentyfourteen_categorized_blog()”意味着您的文件正在尝试多次声明同一函数。该函数可以在两个单独的文件中定义,也可以在同一文件的两个位置中定义。

"Cannot redeclare twentyfourteen_categorized_blog()" means that your file is trying to declare the same function multiple times. Either the function is defined in two separate files or in two places in the same file.

水波映月 2025-01-19 09:38:06

我能够通过在functions.php中包含template_tags.php来解决这个问题

I was able to resolve this by including template_tags.php in functions.php

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