WordPress Admin Panelde Ek Dosya Sayısını Gösterme
WordPress sitenize hiç durmadan bir sürü ek dosya, resim, video gibi bir çok ek dosya yüklüyorsunuz. Ne kadar yüklediğinizi, sayısını göremiyorsunuz. Aşağıdaki kod bloğunu temanızda function.php dosyasına uygun bir yere ekleyin ve ek dosya sayınızı bir sutun halinde görün.
add_filter('manage_posts_columns', 'posts_columns_attachment_count', 5);
add_action('manage_posts_custom_column', 'posts_custom_columns_attachment_count', 5, 2);
function posts_columns_attachment_count($defaults){
$defaults['wps_post_attachments'] = __('Att');
return $defaults;
}
function posts_custom_columns_attachment_count($column_name, $id){
if($column_name === 'wps_post_attachments'){
$attachments = get_children(array('post_parent'=>$id));
$count = count($attachments);
if($count !=0){echo $count;}
}
}
