程序员人生 网站导航

简单实现 WordPress 统计图片数量的代码

栏目:WordPress时间:2014-05-14 14:30:18

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

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐