当前位置: 首页 > 站长资讯 > 正文页面

dedecms随机调用文章数据方法汇总

本文实例总结了dedecms随机调用文章数据方法。分享给大家供大家参考。具体分析如下:o9g网站目录_网站网址收录与提交入口

有时我们为了网站优化都会对网站最后一些文章进行随机读取显示,这样可以提高网站对搜索引擎的体验,下面我们就来分析总结一下dedecms随机调用文章数据方法.o9g网站目录_网站网址收录与提交入口

方法一,直接利用artlist中的orderyb=rand 即可实例,o9g网站目录_网站网址收录与提交入口

{dede:arclist row=10 orderby=rand}o9g网站目录_网站网址收录与提交入口

<li><a href="[field:arcurl/]" target="_blank">[field:title/]</a></li>{/dede:arclist}o9g网站目录_网站网址收录与提交入口

方法二,利用自定做法o9g网站目录_网站网址收录与提交入口

1.增加以下dedecms自定义标签 randarc,o9g网站目录_网站网址收录与提交入口

function lib_randarc(&$ctag , &$refObj){o9g网站目录_网站网址收录与提交入口

global $dsql;o9g网站目录_网站网址收录与提交入口

FillAttsDefault($ctag->CAttribute->Items ,"limit|1");o9g网站目录_网站网址收录与提交入口

extract($ctag->CAttribute->Items);o9g网站目录_网站网址收录与提交入口

$s = '';o9g网站目录_网站网址收录与提交入口

$tcp = new DedeTagParse();o9g网站目录_网站网址收录与提交入口

$tcp->SetNameSpace("field",'[',']');o9g网站目录_网站网址收录与提交入口

$tcp->LoadSource($ctag->GetInnerText());o9g网站目录_网站网址收录与提交入口

$sql = $query = "SELECT se.*,tp.typedir,tp.typename,tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepatho9g网站目录_网站网址收录与提交入口

FROM `dede_archives` se LEFT JOIN `dede_arctype` tp ON se.typeid=tp.id WHERE 1 order by rand() limit $limit";o9g网站目录_网站网址收录与提交入口

$dsql->Execute("f",$sql);o9g网站目录_网站网址收录与提交入口

while($row1 = $dsql->GetArray("f")){o9g网站目录_网站网址收录与提交入口

$row1['arcurl'] = GetFileUrl($row1['id'],$row1['typeid'],$row1['senddate'],$row1['title'],o9g网站目录_网站网址收录与提交入口

$row1['ismake'],o9g网站目录_网站网址收录与提交入口

$row1['arcrank'],$row1['namerule'],$row1['typedir'],$row1['money'],o9g网站目录_网站网址收录与提交入口

$row1['filename'],$row1['moresite'],$row1['siteurl'],$row1['sitepath']);o9g网站目录_网站网址收录与提交入口

foreach($tcp->CTags as $k => $v ){o9g网站目录_网站网址收录与提交入口

$tcp->Assign($k , $row1[$v->GetName()]);o9g网站目录_网站网址收录与提交入口

}o9g网站目录_网站网址收录与提交入口

$s.=$tcp->GetResult();o9g网站目录_网站网址收录与提交入口

}o9g网站目录_网站网址收录与提交入口

return $s;o9g网站目录_网站网址收录与提交入口

}o9g网站目录_网站网址收录与提交入口

2.在dedecms文章模板中调用,o9g网站目录_网站网址收录与提交入口

{dede:randarc limit=1}<a href=[field:arcurl/]>[field:title/]</a>{/dede:randarc}o9g网站目录_网站网址收录与提交入口

这样很简单的就完成了dedecms文章页面随机调用一篇文章的功能o9g网站目录_网站网址收录与提交入口

首页随机调用文章并定时自动更新o9g网站目录_网站网址收录与提交入口

要实现DEDE首页自动更新的前提是网站首页必须有随机文章,对于随机文章不懂的朋友看这里实现DEDE首页内页随机文章列表代码,熟悉的直接跳过,o9g网站目录_网站网址收录与提交入口

{dede:arclist sort='rand' titlelen=48 row=16}o9g网站目录_网站网址收录与提交入口

<li><a href="[field:arcurl/]" title="[field:title/]" target="_blank">[field:title/]</a></li>o9g网站目录_网站网址收录与提交入口

{/dede:arclist}o9g网站目录_网站网址收录与提交入口

这时首页每次更新的内容来源就有了,只是还不会自动生成更新的html文件,下面来说让dede自动生成首页的具体方法.o9g网站目录_网站网址收录与提交入口

把下面的代码复制下来新建一个文本文档粘贴保存,然后把文件名改为rrsc_cn.php中的,上传到根目录,修改首页模板,在网站首页的<head></head>这部分加入<script src="/rrsc_cn.php" language="javascript"></script>这段代码,然后更新首页,o9g网站目录_网站网址收录与提交入口

<?phpo9g网站目录_网站网址收录与提交入口

function sp_input( $text )o9g网站目录_网站网址收录与提交入口

{o9g网站目录_网站网址收录与提交入口

$text = trim( $text );o9g网站目录_网站网址收录与提交入口

$text = htmlspecialchars( $text );o9g网站目录_网站网址收录与提交入口

if ( !get_magic_quotes_gpc() )o9g网站目录_网站网址收录与提交入口

return addslashes( $text );o9g网站目录_网站网址收录与提交入口

elseo9g网站目录_网站网址收录与提交入口

return $text;o9g网站目录_网站网址收录与提交入口

}o9g网站目录_网站网址收录与提交入口

$autotime = 300;//自动更新时间,单位为秒,这里我设为5分钟,大家可以自行更改。o9g网站目录_网站网址收录与提交入口

$fpath = "../data/last_time.inc";//记录更新时间文件,如果不能达到目的,请检查是否有读取权限。o9g网站目录_网站网址收录与提交入口

include( $fpath );o9g网站目录_网站网址收录与提交入口

if( emptyempty($last_time) )o9g网站目录_网站网址收录与提交入口

$last_time = 0;o9g网站目录_网站网址收录与提交入口

if( sp_input($_GET['renew'])=="now" )o9g网站目录_网站网址收录与提交入口

$last_time = 0;o9g网站目录_网站网址收录与提交入口

if( (time()-$last_time)>=$autotime )o9g网站目录_网站网址收录与提交入口

{o9g网站目录_网站网址收录与提交入口

define('DEDEADMIN', ereg_replace("[//]{1,}",'/',dirname(__FILE__) ) );o9g网站目录_网站网址收录与提交入口

require_once(DEDEADMIN."/../include/common.inc.php");o9g网站目录_网站网址收录与提交入口

require_once(DEDEINC."/arc.partview.class.php");o9g网站目录_网站网址收录与提交入口

/*o9g网站目录_网站网址收录与提交入口

$row = $dsql->GetOne("Select * From dede_homepageset");o9g网站目录_网站网址收录与提交入口

$dsql->Close();o9g网站目录_网站网址收录与提交入口

$templet=$row['templet'];o9g网站目录_网站网址收录与提交入口

$position=$row['position'];o9g网站目录_网站网址收录与提交入口

*/o9g网站目录_网站网址收录与提交入口

$templet = "default/index.htm";//这里是首页模板位置,当前是dede默认首面位置。o9g网站目录_网站网址收录与提交入口

$position = "../index.html";o9g网站目录_网站网址收录与提交入口

$homeFile = dirname(__FILE__)."/".$position;o9g网站目录_网站网址收录与提交入口

$homeFile = str_replace( "/", "/", $homeFile );o9g网站目录_网站网址收录与提交入口

$homeFile = str_replace( "//", "/", $homeFile );o9g网站目录_网站网址收录与提交入口

$pv = new PartView();o9g网站目录_网站网址收录与提交入口

$pv -> SetTemplet( $cfg_basedir.$cfg_templets_dir."/".$templet );o9g网站目录_网站网址收录与提交入口

$pv -> SaveToHtml( $homeFile );o9g网站目录_网站网址收录与提交入口

$pv -> Close();o9g网站目录_网站网址收录与提交入口

$file = fopen( $fpath, "w" );o9g网站目录_网站网址收录与提交入口

fwrite( $file, "<?phpn" );o9g网站目录_网站网址收录与提交入口

fwrite( $file, "$last_time=".time().";n" );o9g网站目录_网站网址收录与提交入口

fwrite( $file, '?>' );o9g网站目录_网站网址收录与提交入口

fclose( $file );o9g网站目录_网站网址收录与提交入口

}o9g网站目录_网站网址收录与提交入口

?>o9g网站目录_网站网址收录与提交入口

希望本文所述对大家的dedecms建站有所帮助。o9g网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章