Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: user_request_key_expiration

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
175
176 /**
177  * Cleans up failed and expired requests before displaying the list table.
178  *
179  * @since 4.9.6
180  * @access private
181  */
182 function _wp_personal_data_cleanup_requests() {
183      /** This filter is documented in wp-includes/user.php */
184      $expires = (int) apply_filters( 'user_request_key_expiration', DAY_IN_SECONDS );
185
186      $requests_query = new WP_Query(
187           array(
188                'post_type'      => 'user_request',
189                'posts_per_page' => -1,
190                'post_status'    => 'request-pending',
191                'fields'         => 'ids',
192                'date_query'     => array(
193                     array(