创建一个单独PHP文件,如何引用dedecms中模版文件

WBOY
Release: 2016-06-06 20:51:10
Original
1292 people have browsed it

如题,我单独创建了一个php文件,现在我想导入DEDECMS中模版文件head.htm如何关联呢?
直接导入的文件显示的是head.htm里面的代码。没有解释DEDECMS中标签,如何处理呢?

回复内容:

如题,我单独创建了一个php文件,现在我想导入DEDECMS中模版文件head.htm如何关联呢?
直接导入的文件显示的是head.htm里面的代码。没有解释DEDECMS中标签,如何处理呢?

你需要是用 dedecms 的模板解释引擎,然后按照用法来加载模板文件。
建议你拷贝一个现有的文件,然后一点一点修改。这样可以随时查看效果。

这个问题之前是我博客里我单独写了一篇相关的“教程”,其实很简单,只需要载入织梦的模板解析类即可。 在根目录创建 example.php,代码如下:

<code class="lang-php"><?php require_once (dirname(__FILE__)."/include/common.inc.php");
require_once DEDEINC.'/arc.partview.class.php';
$tempfile = $cfg_basedir.$cfg_templets_skin.'/example.htm';//定义模板路径
$pv = new PartView();//初始化类
$pv->SetTemplet($tempfile);//设定模板文件路径
$pv->Display();//显示该页面
?>
</code>
Copy after login

然后把你的当前模板目录里,创建一个example.htm 的模板文件,在这个模板文件里就可以使用织梦系统的全局标签了。 更详细的介绍你可以到博客查看原文:http://www.xuewl.com/framework/dede_class_system_partview.html

基于根目录下的index.html 修改出来看看那

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!