Comment.php
3 months ago
Media.php
3 months ago
NetworkSite.php
3 months ago
NetworkUser.php
3 months ago
Post.php
3 months ago
Taxonomy.php
3 months ago
TotalItemsTrait.php
3 months ago
User.php
3 months ago
TotalItemsTrait.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\ListTable; |
| 4 | |
| 5 | use WP_List_Table; |
| 6 | |
| 7 | trait TotalItemsTrait |
| 8 | { |
| 9 | |
| 10 | public function get_total_items(): int |
| 11 | { |
| 12 | global $wp_list_table; |
| 13 | |
| 14 | if ( ! $wp_list_table instanceof WP_List_Table) { |
| 15 | return 0; |
| 16 | } |
| 17 | |
| 18 | return $wp_list_table->get_pagination_arg('total_items') ?? 0; |
| 19 | } |
| 20 | |
| 21 | } |