Home > CMS Tutorial > DEDECMS > body text

What is the function of include tag in dedecms

藏色散人
Release: 2019-07-24 10:46:40
Original
3519 people have browsed it

What is the function of include tag in dedecms

What is the function of the include tag in dedecms?

The include tag in dedecms is to introduce a file.

Code form:

{dede:include filename="文件路径"/}
Copy after login

This tag can help us reuse code very well, that is, like some commonly used codes, such as head, bottom, this It can be used in every page, then we write it into a separate file, such as the head is written as head.htm and the bottom is written as footer.htm, and then only need to use the include tag to include them in each page Just introduce it. Isn’t it much better to write it this way than adding repetitive code? The page can also be optimized better.

Example:

First we write a test.htm. This file will be introduced in the home page template later. We use dw to make a simple htm web page , named test.htm. We have skipped the process of making a simple HTML web page, it is too simple.

After the test.htm web page is completed, we next go to the home page template index.htm and use the include tag to introduce the file (test.htm). We are in Add include tags between them to introduce the content of the test.html page. The code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>测试主题include标签引入</title>
</head>
 
<body>
{dede:include filename="test.htm"/}
</body>
</html>
Copy after login

For more dedecms technical articles, please visit the dedecms usage tutorial column!

The above is the detailed content of What is the function of include tag in dedecms. For more information, please follow other related articles on the PHP Chinese website!

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!