修改方法:打開/admin/templets/makehtml_tag_list.htm,admin是你網(wǎng)站后臺(tái)管理目錄。搜索“標(biāo)簽管理”,大約在63行,
在它下面添加下面代碼:
<button type="button" name="b112" class="btn btn-success btn-sm" onclick="document.form1.action='makehtml_tag_action_index.php';onTagSubmit();">更新ATG首頁</button>
保存
然后,在后臺(tái)管理目錄下新建一個(gè)PHP文件,命名為:makehtml_tag_action_index.php
把下面代碼復(fù)制進(jìn)去:
<?php
require_once(dirname(__FILE__)."/config.php");
CheckPurview('sys_MakeHtml');
require_once(DEDEINC."/archive/taglist.class.php");
$tagFile = DEDEADMIN."/../tags/index.html";
$fp = fopen($tagFile,"w") or die("你指定的文件名有問題,無法創(chuàng)建文件");
fclose($fp);
$pv = new PartView();
$GLOBALS['_arclistEnv'] = 'index';
$pv->SetTemplet($cfg_basedir.$cfg_templets_dir."/".$cfg_df_style."/tag.htm"); //打開TAG頁模板
$pv->SaveToHtml($tagFile);
echo "成功更新TAG主頁:".$tagFile;
echo "<br/><br/><a href='../tags/index.html' target='_blank'>瀏覽...</a>";
?>
完畢。然后去快去生成tag首頁吧。
這個(gè)文件也提供下載。點(diǎn)擊下面下載即可。
]]>