WP_Links_List_Table::prepare_items() WordPress Method
The prepare_items() method is used to prepare the data for display in the links list table. This includes fetching the data from the database, sorting it, and filtering it.
WP_Links_List_Table::prepare_items() #
Source
File: wp-admin/includes/class-wp-links-list-table.php
public function prepare_items() { global $cat_id, $s, $orderby, $order; wp_reset_vars( array( 'action', 'cat_id', 'link_id', 'orderby', 'order', 's' ) ); $args = array( 'hide_invisible' => 0, 'hide_empty' => 0, ); if ( 'all' !== $cat_id ) { $args['category'] = $cat_id; } if ( ! empty( $s ) ) { $args['search'] = $s; } if ( ! empty( $orderby ) ) { $args['orderby'] = $orderby; } if ( ! empty( $order ) ) { $args['order'] = $order; } $this->items = get_bookmarks( $args ); }
Expand full source codeCollapse full source codeView on TracView on GitHub