好的,我有一个名为,
page-allpost.php
现在我有一个名为“所有帖子”的菜单项,在该菜单中我想调用 page-allpost.php,它将显示所有帖子。怎么做?
希望这里有人可以提供帮助,谢谢。
好的,我有一个名为,
page-allpost.php
现在我有一个名为“所有帖子”的菜单项,在该菜单中我想调用 page-allpost.php,它将显示所有帖子。怎么做?
希望这里有人可以提供帮助,谢谢。
OK, i just add a name to my template header and then link it to the custom page and then add the page into the menu and thats it, everything work as i expected.
你可以这样做
include('file path')
或者include_once('file path')
或require('file path')
或require_once('file path')
include 和 require 的区别
不同的是,如果我们使用 require_once() 则要添加的文件应该存在于给定路径中,否则将显示致命错误。如果我们使用 include_once 则不会因此而产生更多问题,如果存在没有这样的文件。如果我们需要包含一个文件,那么我们会更喜欢 include_once() 因为它会包含一次文件,如果之前包含它就不会包含该文件
使用时需要或包含
与 include() 不同,require() 将始终读取目标文件,即使它所在的行从不执行。如果要有条件地包含文件,请使用 include()。条件语句不会影响 require()。但是,如果出现 require() 的那一行没有被执行,那么目标文件中的任何代码都不会被执行。