How do I create links at the top of WP_List_table?
As mentioned in the comments, if this is an existing table you wish to add/remove links from, see this answer. If this a custom subclass of WP_List_Table, e.g.: class Wpse56883_WP_List_Table extends WP_List_Table{ //Class methods here } Then you add these links by overriding the get_views() method. This should return an array: array ( id => … Read more