If you’re using many attachments in your WordPress posts, you might like to be able to visualize how many attachments a post have just from the admin post list. Here is a best way to force WordPress to display post attachment count in admin post list.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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;} } } |