模板文件结构及可用标签请参考:Z-BlogPHP 模板文件与模板标签。
{* Template Name:xxx *}放在模板文件第一行,xxx表示模板名。
模板名和模板类型同时出现
{* Template Name:xxx * Template Type:yyyy *}放在模板文件第一行,xxx表示模板名,yyyy表示模板类型 类型有:list,single,article,page,category,tag,author,date,404,search
类型 | 意义 |
---|---|
list | 列表页面 |
single | 单页面(含文章与页面) |
article | 文章 |
page | 页面 |
category | 分类列表 |
tag | 标签列表 |
author | 作者列表 |
date | 日期列表 |
search | 搜索 |
404 | 404 |
index | 首页(非列表页) |
none | 未分类(不显示) |
示例1
{* Template Name:文章模板 * Template Type:single *}示例2
{* Template Name:作者列表模板 * Template Type:list,author *}
template.json示例:
{ "id": "主题ID", "templates": [ { "filename": "index", "type": "list", "name": "列表自动模板" }, { "filename": "single", "type": "single", "name": "文章/单页自动模板" } ] }
{template:hearder}即嵌入模板文件
hearder.php
的文件内容。这里hearder
只是举例,{template:abc}
即可嵌入abc.php
文件内容。
{module:xxxxxx}xxxxxx为模块的filename,这里所说的filename即在模块编辑时看到的文件名。
{$abc}如输出文章($article)对象的Title属性值:
{$article.Title}注意:
$article
等在特定页面是作为特定实体对象存在的,如在文章页需要使用getlist
等获取文章列表时请勿使用article作为别名。
只定义赋值,并不输出内容
{$now=time()} {$abc="my name"}若要输出变量内容,代码同上一条所述
{$now} {$abc}
if(margin != undefined){$li.css(“margin-right”, margin+'px');}
将被模板解析为if(margin != undefined)<?php echo $li->css("margin-right", margin+'px'); ?>
指的是系统各项配置值,如站点域名:
{#ZC_BLOG_HOST#}这是zblog传统的常量型,和asp版语法基本一致
{if $i==1} {elseif $i==2} {else} {/if}
{foreach $articles as $post} <p>{$post.Title}</p> {/foreach}
{for $i = 1 ; $i <= 10 ; $i ++} <p>这是第{$i}次?</p> {/for}
如,直接输出当前时间
{time()}
举例,输出GetList()的返回数组
{foreach GetList() as $post} {$post.***} {/foreach}
更多由Z-BlogPHP提供的可用函数请参考:Z-BlogPHP 辅助函数列表
{* 这里是注释 *}
{php} global $actions; print_r($actions); echo '12345'; {/php}