zblog批量删除文章 删除文章代码
##############################
$where = array();
$where[] = array('=', 'log_Type', 0); # 文章类型为0 即普通文章 (不包括页面 )
#$where[] = array('=', 'log_Status', 1); # 0 正式 1草稿 2审核中
$articles = $zbp->GetPostList('*', $where, array('log_ID' => 'ASC'));
if (count($articles) >= 0) {# 有
foreach ($articles as $article) {
$article->Del();
}
}
#############################
