最近研究dede企业站仿站,故此针对dede模板首页列表页文章页企业网站建站模版调用标题关键字描述的变量标签进行了统一整理,方便后续使用。
首页写法:
<title>{dede:global.cfg_webname/}</title> <meta name="description" content="{dede:global.cfg_description/}" /> <meta name="keywords" content="{dede:global.cfg_keywords/}" />
dede模板各页面调用标题关键字描述标签
栏目页写法:
<title>{dede:field.seotitle/}</title> <meta name="keywords" content="{dede:field name='keywords'/}" /> <meta name="description" content="{dede:field name='description' function='html2text(@me)'/}" />
dede模板各页面调用标题关键字描述标签
频道页写法:
<title>{dede:field.title/}_{dede:global.cfg_webname/}</title> <meta name="keywords" content="{dede:field name='keywords'/}" /> <meta name="description" content="{dede:field name='description' function='html2text(@me)'/}" />
dede模板各页面调用标题关键字描述标签
文章页写法:
<title>{dede:field.title/}_{dede:global.cfg_webname/}</title> <meta name="keywords" content="{dede:field.keywords/}" /> <meta name="description" content="{dede:field.description function='html2text(@me)'/}" />
文章页默认调用文章标题和网站名就OK。