-1

正如他们所说,它适用于视频,我在包含以下代码的主题文件夹中创建了一个名为 posttypes.php 的文件:

<?php
echo "Hello!";
?>

我已经将一个名为 functions.php 的文件放入子主题烹饪中:

<?php
include_once(ABSPATH . 'wp_content/themes/posttypes.php');
?>

因此,我应该在视觉上输出一个 Hello!情况并非如此,我有以下错误输出:

警告:include_once(C:\wamp\www\portfolio/wp_content/themes/posttypes.php) [function.include-once]:无法打开流:C:\wamp\www\portfolio\wp 中没有这样的文件或目录-content\themes\cooking\functions.php 在第 2 行'

警告:include_once() [function.include]:无法在 C 中打开 'C:\wamp\www\portfolio/wp_content/themes/posttypes.php' 以包含 (include_path='.;C:\php\pear'): \wamp\www\portfolio\wp-content\themes\cooking\functions.php 在第 2 行

我失败了什么?

4

1 回答 1

0

我不知道您正在关注的教程,但看起来您错过了主题文件夹。

include_once(ABSPATH . 'wp_content/themes/THEME-FOLDER/posttypes.php');
于 2013-01-26T16:13:28.967 回答