Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #43910, comment 7


Ignore:
Timestamp:
05/22/2018 09:54:36 AM (7 years ago)
Author:
birgire
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #43910, comment 7

    initial v1  
    2525 * @param array $args An array of WP_Query arguments.
    2626 */
     27$args = apply_filters( $this->request_type . '_list_table_query_args', $args );
    2728
    28 $requests_query = new WP_Query( apply_filters( $this->request_type . '_list_table_query_args', $args ) );
     29$requests_query = new WP_Query( $args );
    2930}}}