My New Title My New Title

Home  >  Article  >  CMS Tutorial  >  How dedecms implements template replacement

How dedecms implements template replacement

下次还敢
下次还敢Original
2024-04-16 12:30:23689browse

How to use DedecMS to implement template replacement

Step 1: Understand the DedecMS template replacement mechanism

DedecMS uses Tags to implement template replacement. These Tags are used to indicate what needs to be replaced and how.

Step 2: Find the template you want to replace

In the DedecMS management background, navigate to "Template Management" and select the template file you want to replace.

Step 3: Add replacement Tags

In the template file, find the content that needs to be replaced and add the following Tags around it:

<code>{dede:replace name='要替换的内容'/}</code>

For example, to replace the title of the page, you can add:

<code>{dede:replace name='title'/}</code>

Step 4: Create a file containing the replacement content

In the "data/part" of the DedecMS installation directory " folder, create a file named "replace_name.htm", where "name" is the name you specified in the "replace" Tag.

Add the content to be replaced in the file. For example, to replace the page title with "My New Title", add:

<code class="html"><title>我的新标题</title></code>

Step 5: Refresh the cache

After completing the changes, refresh the backend admin Caching in the interface so changes take effect.

Example: Replace page title

<code><!-- 原来的模板代码 -->
<title>{dede:field name='title'/}</title>

<!-- 替换后的模板代码 -->
<title>{dede:replace name='title'/}</title></code>
<code class="html"><!-- replace_title.htm 文件内容 -->
<title>我的新标题</title></code>

The above is the detailed content of How dedecms implements template replacement. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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