dedecms文章標題呼叫文章分類名稱的方法

黄文Rex發表於2024-11-14

問題描述

  • 預設模板的文章頁標題格式為“文章標題”_“網站名稱”。
  • SEO最佳化需要將分類名稱加入標題。

實現程式碼

<title>
{dede:field.title/}_{dede:fieldname='position' runphp='yes'}
$tc="_"; $tw=$GLOBALS['cfg_list_symbol'];
@me=HTML2text(@me); $tf=split($tw,@me);
for($ta=(count($tf)-2);$ta>=1;$ta--){$tk.=trim($tf[$ta]).$tc;}
$tk=substr($tk,0,-1); @me=$tk;
{/dede:field}_{dede:global.cfg_webname/}
</title>

相關文章