欢迎访问服务器技术网-www.fuwuqijishu.com

Typecho CMS调用随机文章 用函数代码实现

网站建设 fuwuqijishu 2年前 (2022-09-04) 75次浏览 0个评论 扫描二维码

Typecho程序我们有些时候是需要在侧栏调用随机文章的,这样可以显得我们的文章在更新和内链效果,这里我们有一个函数可以实现随机文章调用。

具体代码和操作步骤如下:

第一步:编写以下代码

把下面的代码添加至主题的functions.php文件:

function getRandomPosts($limit = 9){
$db = Typecho_Db::get();
$result = $db->fetchAll($db->select()->from('table.contents')
->where('status = ?','publish')
->where('type = ?', 'post')
->where('created <= unix_timestamp(now())', 'post')
->limit($limit)
->order('RAND()')
);
if($result){
$i=1;
foreach($result as $val){
if($i<=3){
$var = ' class="red"';
}else{
$var = '';
}
$val = Typecho_Widget::widget('Widget_Abstract_Contents')->push($val);
$post_title = htmlspecialchars($val['title']);
$permalink = $val['permalink'];
echo '<li><i'.$var.'>'.$i.'</i><a href="'.$permalink.'" title="'.$post_title.'" target="_blank">'.$post_title.'</a></li>';
$i++;
}
}
}

第二步:将以上代码添加至主题functions.php文件内

第三步:调用代码

在要显示随机文章的地方添加调用代码,,一般是添加到主题的sidebar.php文件,不同的文章模板可能不一样,请根据自己的模板进行添加。

<?php getRandomPosts('9');?>

数字9是要显示的文章数量,运行后就轻松实现对随机文章的调用了。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2404.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900