如何调用Typecho程序站点中评论最多的文章列表
ssr
撰写于 2022年 02月 26 日

一般评论最多的文章既是读者最关注,也是博主最在意的文章,同时也是我们最经常需要调用现实的文章。今天,我们就来分享一下,在Typecho博客中通过主题文件中添加函数代码的形式,来实现对最热文章的调用。
操作的步骤和代码如下:
第一步:编写以下代码:
在当前主题的functions.php文件

function getHotComments($limit = 10){
$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('commentsNum', Typecho_Db::SORT_DESC)
);
if($result){
foreach($result as $val){
$val = Typecho_Widget::widget('Widget_Abstract_Contents')->push($val);
$post_title = htmlspecialchars($val['title']);
$permalink = $val['permalink'];
echo '
  • '.$post_title.'
  • ';
    }
    }
    }

    核实后,将以上代码添加到functions.php主题文件中
    第二步:将以上修改好的主题代码文件添加到需要调用的热评文章对应的模板中。
    <?php getHotComments('10');?>

    代码中的10表示要调用的文章数量。
    最后,保存并运行代码,实现对热评文章的调用。

    如何调用Typecho程序站点中评论最多的文章列表

    一般评论最多的文章既是读者最关注,也是博主最在意的文章,同时也是我们最经常需要调用现实的文章。今天,我们就来分享一下,在Typecho博客中通过主题文件中添加函数代码的形式,来实现对最热文章的调用。
    操作的步骤和代码如下:
    第一步:编写以下代码:
    在当前主题的functions.php文件

    function getHotComments($limit = 10){
    $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('commentsNum', Typecho_Db::SORT_DESC)
    );
    if($result){
    foreach($result as $val){
    $val = Typecho_Widget::widget('Widget_Abstract_Contents')->push($val);
    $post_title = htmlspecialchars($val['title']);
    $permalink = $val['permalink'];
    echo '
  • '.$post_title.'
  • ';
    }
    }
    }

    核实后,将以上代码添加到functions.php主题文件中
    第二步:将以上修改好的主题代码文件添加到需要调用的热评文章对应的模板中。
    <?php getHotComments('10');?>

    代码中的10表示要调用的文章数量。
    最后,保存并运行代码,实现对热评文章的调用。

    赞 (1)

    猜您想看

    评论区(暂无评论)

    这里空空如也,快来评论吧~

    我要评论