You appear to be a bot. Output may be restricted
Description
Call any actions that should have been delayed, in order to be sure that all necessary information has been loaded by WP Core.
Hooks EDD actions, when present in the $_GET superglobal. Every edd_action present in $_POST is called using WordPress's do_action function. These functions are called on template_redirect.
Usage
$void = edd_delayed_get_actions();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/actions.php
Lines:
1 to 12 of 12
function edd_delayed_get_actions() { $key = ! empty( $_GET['edd_action'] ) ? sanitize_key( $_GET['edd_action'] ) : false; $is_delayed_action = edd_is_delayed_action( $key ); if ( ! $is_delayed_action ) { return; } if ( ! empty( $key ) ) { do_action( "edd_{$key}", $_GET ); } }