/**
* 首頁(yè)/列表獲取文章Tag
*
* @access public
* @param string $aid 文章id
* @param string $num 數(shù)量
* @return string
*/
if (!function_exists('GetMyTags'))
{
function GetMyTags($aid, $num=3)
{
global $dsql;
$tags = '';
$query = "Select tag From `#@__taglist` Where aid='$aid' limit $num ";
$dsql->Execute('tag',$query);
while($row = $dsql->GetArray('tag'))
{
$tags.= ($tags=='' ? "<a href=/tags.php?/{$row['tag']} rel='tag'>{$row['tag']}</a>" : ','."<a href=/tags.php?/{$row['tag']} rel='tag'>{$row['tag']}</a>");
}
return $tags;
}
}
[field:id function=GetMyTags(@me,5)/]
數(shù)字5?是調(diào)用5個(gè)tag
注意,上面的調(diào)用出來(lái)的TAG地址格式是? /tags.php?/散文? ? ,如果你的TAG偽靜態(tài)地址格式像 /tags/散文.html 這種格式的,就需要用下面這段代碼,注意紅色的修改部分。
/**
* 首頁(yè)/列表獲取文章Tag
*
* @access public
* @param string $aid 文章id
* @param string $num 數(shù)量
* @return string
*/
if (!function_exists('GetMyTags'))
{
function GetMyTags($aid, $num=3)
{
global $dsql;
$tags = '';
$query = "Select tag From `#@__taglist` Where aid='$aid' limit $num ";
$dsql->Execute('tag',$query);
while($row = $dsql->GetArray('tag'))
{
$tags.= ($tags=='' ? "<a href=/tags/{$row['tag']}.html rel='tag'>{$row['tag']}</a>" : ','."<a href=/tags/{$row['tag']}.html rel='tag'>{$row['tag']}</a>");
}
return $tags;
}
}
]]>
寫一個(gè)觸發(fā)定時(shí)自動(dòng)更新的php文件,新建一個(gè)php文件,內(nèi)容如下,標(biāo)題為autoindex.php,把它放到plus文件夾中。
<?php
function sp_input( $text )
{
$text = trim( $text );
$text = htmlspecialchars( $text );
if (!get_magic_quotes_gpc())
return addslashes( $text );
else
return $text;
}
$autotime = 120;//自動(dòng)更新時(shí)間,單位為秒
$fpath = "../data/last_time.inc";//記錄更新時(shí)間文件,如果不能達(dá)到目的,請(qǐng)檢查是否有讀取權(quán)限。
include( $fpath );
if( empty($last_time))
$last_time = 0;
if( sp_input($_GET['renew'])=="now")
$last_time = 0;
if((time()-$last_time)>=$autotime )
{
define('DEDEADMIN', ereg_replace("[/\\]{1,}",'/',dirname(__FILE__) ) );
require_once(DEDEADMIN."/../include/common.inc.php");
require_once(DEDEINC."/arc.partview.class.php");
/*
$row = $dsql->GetOne("Select * From dede_homepageset");
$dsql->Close();
$templet=$row['templet'];
$position=$row['position'];
*/
$templet = “default/index.htm”;//這里是首頁(yè)模板位置,當(dāng)前是dede默認(rèn)首頁(yè)位置。
$position = "../index.html";
$homeFile = dirname(__FILE__)."/".$position;
$homeFile = str_replace("\\", "/", $homeFile );
$homeFile = str_replace( "http://", "/", $homeFile );
$pv = new PartView();
$pv ->SetTemplet( $cfg_basedir.$cfg_templets_dir."/".$templet );
$pv -> SaveToHtml( $homeFile );
$pv -> Close();
$file = fopen( $fpath, "w");
fwrite( $file, "<?php\n");
fwrite( $file,"\$last_time=".time().";\n");
fwrite( $file, '?>' );
fclose( $file );
}
?>
在首頁(yè)的模版代碼head標(biāo)簽中引入觸發(fā)文件代碼:
<script src="/plus/autoindex.php" type="text/javascript"></script>
然后手動(dòng)更新一下首頁(yè),接下來(lái)在設(shè)置的時(shí)間過(guò)了以后如果有用戶訪問首頁(yè)就會(huì)觸發(fā)自動(dòng)更新文件,首頁(yè)就會(huì)自動(dòng)更新一次。
]]>//調(diào)用單篇文章評(píng)論數(shù)
function cnum($id)
{
global $dsql;
$row = $dsql->GetOne("Select count(id) as c from dede_feedback where aid='$id'");
$num=$row['c'];
if($num==0)$num=' 0';
return $num;
}
第二:模板使用 [field:id function="cnum(@me)"/]調(diào)用即可
]]>function Getimgurls($aid,$num=4)
{
global $dsql;
$imgurls = $result = '';
$imgrow = $dsql->GetOne( "Select imgurls From `#@__addonimages` where aid='$aid' ");
$imgurls = $imgrow['imgurls'];
if($imgurls != '')
{
$dtp = new DedeTagParse();
$dtp->LoadSource($imgurls);
$images = array();
if(is_array($dtp->CTags))
{
foreach($dtp->CTags as $ctag)
{
if($ctag->GetName() == 'img')
{
$row = array();
$row['width'] = $ctag->GetAtt('width');
$row['height'] = $ctag->GetAtt('height');
$row['imgsrc'] = trim($ctag->GetInnerText());
$row['text'] = $ctag->GetAtt('text');
$images[] = $row;
}
}
}
$dtp->Clear();
$i = 0;
foreach($images as $row)
{
if($i == $num) break;
if($row['imgsrc'] != '')
{
$result .= "<li><div class='pic'><a title='{$row['text']}' href='{$row['imgsrc']}'><img src='{$row['imgsrc']}' mid='{$row['imgsrc']}' big='{$row['imgsrc']}' width='70' height='70'></a></div></li>";
}
$i++;
}
return $result;
}
}
<li><div class='pic'><a title='{$row['text']}' href='{$row['imgsrc']}'><img src='{$row['imgsrc']}' mid='{$row['imgsrc']}' big='{$row['imgsrc']}' width='70' height='70'></a></div></li>
改成你自己的,注意單雙引號(hào)
[field:id function=Getimgurls(@me,4)/]
數(shù)字4是調(diào)用幾張圖片
]]>