首页    >    新闻资讯    >   统计图片数

统计图片数

有的朋友想知道怎么统计网站里的图片,今天这段代码就可以统计媒体库中的图片总数。把第一段添加到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();
?>

分类:新闻资讯

标签:, ,

* 版权声明:作者WordPress啦! 转载请注明出处。