WP_Links_List_Table::prepare_items() –

You appear to be a bot. Output may be restricted

Description

Usage

WP_Links_List_Table::prepare_items();

Parameters

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-links-list-table.php
Lines:

1 to 25 of 25
  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 );
  }
 

 View on GitHub View on Trac