易优CMS-使用技巧-易优如何获取广告数量

时间:2023-08-11 12:39 浏览:0 评论:0
0

在仿站的过程中,有时需要调用广告组内的广告数量,可是又没有相对应的标签,如何解决呢?
使用下面方法即可完美解决;

打开 \extend\function.php 文件,复制下面代码粘贴进去

// 获取广告组内广告的数量
if (!function_exists('diy_adv_total')) 
{
    function diy_adv_total($pid = 0)
    {
        $total = 0;
        $pid = intval($pid);
        if (!empty($pid)) {
            $where = [
                'pid'   => $pid,
                'status'  => 1,
                'is_del'  => 0,
                'lang'    => get_home_lang(),
            ];
            $total = \think\Db::name('ad')->where($where)->count();
        }
 
        echo intval($total);
    }
}




前端模板调用标签:{eyou:php}diy_adv_total(1);{/eyou:php}




此广告组的广告是三个,那么标签调用的值即为3;


标签:                              广告管理
1. 本站所有资源来源于用户上传或网络,仅作为参考研究使用,如有侵权请邮件联系站长!
2. 本站积分货币获取途径以及用途的解读,想在本站混的好,请务必认真阅读!
3. 本站强烈打击盗版/破解等有损他人权益和违法作为,请各位会员支持正版!
4. 易优CMS > 易优CMS-使用技巧-易优如何获取广告数量

用户评论