19

我有同样的问题。我对 PHP 完全陌生。我安装了XAMPP并从 WordPress 下载了孵化主题。当我运行 index.php 它给了我以下错误

“致命错误:在第 1 行调用 C:\xampp\htdocs\hatch\index.php 中未定义的函数 get_header()”

我怎样才能解决这个问题?

4

3 回答 3

35

您似乎正在尝试在 WordPress 安装之外运行 WordPress 主题。

您需要下载WordPress的副本,将其解压缩到您的htdocs文件夹中(就像您对主题所做的那样),然后在浏览器中导航到它。

设置后(只需按照说明进行操作),您需要将该主题wp-content/themes放入 WordPress 安装中。

然后,您可以在 WordPress 管理员面板中将主题更改为新主题。

于 2012-04-08T12:22:50.337 回答
10

您只是在访问主题文件。这就是错误的原因。

首先,您需要将下载的主题文件包含在 WordPress 安装文件夹中:wp-content/themes

然后从管理员仪表板激活主题。现在您可以使用主题了。

于 2015-11-30T04:57:53.880 回答
2

You are trying to access the theme file directly from XAMPP'S htdocs folder.

Copy the theme file, and add it to htdocs\wordpress\wp-content\themes. Run WordPress and add the theme from the administrator dashboard.

于 2017-03-24T09:20:00.380 回答