wordpress包含文件

时间:2010-09-08 13:53:52

标签: php wordpress function

我在sidebar-01.php中放了一些php代码

我喜欢在我的模板文件中获取该代码

你是怎么做到的? (我不知道如何更改WP的代码以进行更新)

我试过include('sidebar-01.php); - 它不起作用

我喜欢这样的函数:get_header();对于我的文件,例如:get_file('sidebar-01')

有可能吗?

3 个答案:

答案 0 :(得分:1)

尝试get_sidebar()

中定义的wp-includes/general-template.php功能

答案 1 :(得分:1)

转到“主题编辑器”,找到sidebar.php。编辑它并将代码放在那里:

include('sidebar-01.php');

另外,请记住将sidebar-01.php放在相同文件夹中,与其他主题.php文件(基本上是您的主题文件夹)一样。

答案 2 :(得分:0)

如果您的侧边栏文件名为sidebar-home.php,请将其称为

get_sidebar('home');