如何在wordpress主题目录上方的目录中包含部分内容?

时间:2015-11-13 05:28:45

标签: wordpress themes wordpress-theming directory-structure

我现在设置了3个主题,我需要它们全部来自同一来源的部分内容,以便在我更改任何部分内容的同时更新所有三个主题。

我看到了

include("../../../includes/vital/partial.php");

不在single.php或任何其他主题模板文件中工作。我得到的错误是:

  

警告:include():打开失败' ../../../ includes / vital / partial.php'在/ Users / insertusername / Documents / Code / Projects / wordpress / wordpress-1 / wp中包含(include_path ='。:/ usr / local / Cellar / php56 / 5.6.8 / lib / php')第7行的-content / themes / flowerz-mobile / single.php

我该如何做到这一点?

谢谢!

1 个答案:

答案 0 :(得分:2)

由于Wordpress根据主index.php加载所有内容,因此以下代码适用于每个主题。

include("includes/vital/partial.php");

这是正确的,在开始时没有任何../