If WP_List_Table
is working for you, then you can just make a copy of this class. And use that.
In the WordPress codex, Also says:
If you would still like to make use of the class, you should make a
copy to use and distribute with your own project.
You may define a new class so that it will not interfere with the existing WP_List_Table
Class.
abstract class Legacy_WP_List_Table {
//Code from WP_List_Table
}
Then you can extend this class and use it like:
class MY_List_Table extends Legacy_WP_List_Table {
//Your implementation here
}
This way if WordPress remove or change the class will not affect your implementation.
Related Posts:
- wp_list_table bulk action button is not working – no submit
- `bulk_edit_custom_box` mess the input fields
- Change order of custom columns for edit panels
- How to create Custom filter options in wp_list_table?
- wp_list_tables bulk actions
- Fatal error after 4.4 upgrade class-wp-list-table
- How to remove _wp_http_referer from URL when using WP_List_table?
- How to handle sql with Custom List Table Example
- WP_list_table add custom row action
- How do I limit the status options for bulk/quick edit to only Published and Draft?
- URL Redirect and Bulk Actions in wp_list_table
- Removing sorting option for columns on the post lists page
- Remove Admin Notice on page refresh
- Custom WP_List_Table: How to create an unapproved row?
- Undefined index: hook_suffix
- Accepting certain HTML tags in WP List Table column data
- WP_List_Table bulk actions notice & warning
- Best Alternative to WP List Table
- Inserting Mysql queries into array using wp_list_table class
- how to make custom bulk actions for a WP_List_Table (core class)
- Customize WP_List_Table inside admin panel
- Form element deleted from first row of WP_Lists_Table
- upgraded to wp 4.0 – getting convert_to_screen() errors with WP_List_Table
- WP_List_Table default orderby is numeric
- Index of row in WP_List_Table
- How to remove the bottom table headers (column names) in WP_List_Table?
- Create Add New button [closed]
- how to make custom link in wordpress
- Admin Table Filtering not Working for Custom Post Type
- wp_list_table multiple checkboxes
- Strange font-style / font-weight on CPT list columns screen
- How to sort posts without featured images in the WordPress Dashboard? thanks
- WP_List_Table can’t create filter link
- Bulk Action in wp_list_table
- How do I get WordPress to refresh my wp_list_table after bulk_delete
- Passing search query and custom filter to wp_list_table grid
- Unwanted redirection to the article page using WP_LIST_TABLE in the woocommerce_product_data_panels filter
- Sort by last 7 days in post list
- WP_List_Table add custom bulk actions
- Display data in using WP_List_Table
- Sorting columns with aliases
- WP_LIST_TABLE bulk action
- WP_list_table prepare_items()
- Get the selected posts IDs to use in bulk edit AJAX call
- Process bulk actions with POST method – WP_List_Table
- How to use rowspan in WP List Table?
- Custom List Table – Bulk Action – How to remove the _GET parameters
- Optimize post insert and delete for bulk operations?
- Custom bulk_action
- Custom columns for taxonomy list table
- Plugin API for easy admin list table generation, handling & exporting of MySQL tables?
- How to Change Order of Posts in Admin?
- How do I make an HTML table from a database table?
- How are bulk actions handled in custom list table classes?
- How do I create links at the top of WP_List_table?
- How do I add a WP_List_Table to WordPress page?
- How To Remove These Stuffs From Custom Post Type List Screen?
- Custom Table Column Sortable by Taxonomy Query
- add_action ‘manage_posts_custom_column’ in a class [closed]
- Sort custom post type list table by display name of a user id stored as post meta value
- Why does my custom taxonomy show a total count across all post types
- Bulk term assignment for attachment taxonomies
- How-to implement admin Ajax inside an admin WP_List_Table?
- WP List Table custom quick edit box – post meta data missing and columns change on submit
- List table not rendering when $this->items is filled
- How to implement bulk actions in my plugin?
- Add content in custom post type page after the title and before columns
- WP-CLI Bulk delete posts from specific category
- How to Remove Certain Screen Options and Table Columns from post type in wp_list_table?
- Replace Dashes Before Title in Page List
- wp_list_table search box does not show
- How to Arrange Posts by Size in the WordPress Dashboard?
- How to make custom bulk actions work on the media/upload page?
- How to implement WP_List_Table? WP_List_Table giving array instead of a value in listing table
- Add mass action to wp-admin/users.php
- How to create bulk page and content? [closed]
- Add content before/after admin post wp-list-table
- WP_List_Table Inside Metabox Not Working on Submit
- Searching users with WP_List_Table plugin
- Redirect after deleting post and keep track of pagination
- How to verify nonce from Bulk/Quick Edit in save_post?
- Add custom column at custom posts list
- Bulk post type conversion
- Custom WP_List_Table displays blank rows
- List Table API – Safe to use?
- How to prevent custom fields from being cleared during a bulk edit?
- Fill post titles from post content?
- How to assign an additional/extra/second user-role to multiple users (of a specific user-role)
- Custom Post Type or Custom Tables
- Create a clickable name in WP_List_Table for Plugin Admin
- Invalid Post Type error when attempting to filter and Bulk Edit posts
- WP_list_table bulk_action get edit and delete
- Replacing the List table of a Post Type
- Custom bulk action for media gallery items
- How to stop _wpnonce and _wp_http_referer from appearing in URL
- Remove bulk actions based on user role or capabilities
- Custom Fields Bulk Edit
- Bulk edit post date in wordpress
- How to mass delete one line from all posts
- How can I hook into existing WordPress Bulk actions?