使用下面方法即可完美解决;
打开 \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);
}
}
