WP_Async_Request::get_query_args()

Get query args


Description Description


Return Return

(array)


Top ↑

Source Source

File: includes/libraries/wp-async-request.php

	protected function get_query_args() {
		if ( property_exists( $this, 'query_args' ) ) {
			return $this->query_args;
		}

		return array(
			'action' => $this->identifier,
			'nonce'  => wp_create_nonce( $this->identifier ),
		);
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.