WP_Background_Process::push_to_queue( mixed $data )

Push to queue


Parameters Parameters

$data

(mixed) (Required) Data.


Top ↑

Return Return

($this)


Top ↑

Source Source

File: vendor/deliciousbrains/wp-background-processing/classes/wp-background-process.php

	public function push_to_queue( $data ) {
		$this->data[] = $data;

		return $this;
	}

Top ↑

User Contributed Notes User Contributed Notes

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