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

ZBLOG PHP如何无插件调用随机文章(调用随机文章列表代码方法)

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

这里我们在制作ZBLOG PHP主题模板的时候,或者有需要修改主题的时候会有需要在特定的模块位置调用随机文章。这里我们直接可以通过用代码的方式实现ZBLOG PHP随机文章的调用。如果我们也有需要的话可以参考代码使用且修改对应的样式。

{php}
$order = array('rand()'=>'');
$where = array(array('=','log_Status','0'));
$array = $zbp->GetArticleList(array('*'),$where,$order,array(10),'');
{/php}
{foreach $array as $related}
<li><a href="{$related.Url}">{$related.Title}</a></li>
{/foreach}

默认我们可以看到上面的代码中10篇文章随机显示,如果我们需要调整数量可以调整。以及如果有需要定义样式的可以将li标签设置定义样式。

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

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

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

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2220.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