有的朋友想知道怎么统计网站里的图片,今天这段代码就可以统计媒体库中的图片总数。把第一段添加到functions.php中

计算图片数(计算图片数据量)  图片数 媒体库 插件与修改 新闻资讯 第1张

有的朋友想知道怎样计算网站里的图片,今日这段代码就可以计算媒体库中的图片总数。把榜首段添加到functions.php中

function img_count(){
$query_img_args = array(
'post_type' => 'attachment',
'post_mime_type' =>array(
'jpg|jpeg|jpe' => 'image/jpeg',
'gif' => 'image/gif',
'png' => 'image/png',
),
'post_status' => 'inherit',
'posts_per_page' => -1,
);
$query_img = new WP_Query( $query_img_args );
echo $query_img->post_count;
}

第二代添加到你想显现的页面中

<?
img_count();
?>

转载请说明出处
知优网 » 计算图片数(计算图片数据量)

发表评论

您需要后才能发表评论