| 748 | |
| 749 | function checkbox_capabilities_checker() { |
| 750 | |
| 751 | // get the number of entries (posts, pages etc) that have checkboxes (user can trash or edit them) |
| 752 | var countOfCheckboxes = jQuery('.wp-list-table tbody input[type=checkbox]').size(); |
| 753 | |
| 754 | // if there are no entries with checkboxes (the user can't edit or trash entries) |
| 755 | if ( ! countOfCheckboxes ) { |
| 756 | |
| 757 | // hide the select-all-checkboxes and bulk actions select boxes |
| 758 | jQuery('.bulkactions, .check-column').hide(); |
| 759 | } |
| 760 | } |
| 761 | No newline at end of file |