WP_Background_Process::push_to_queue
Push to queue
Method of the class: WP_Background_Process{}
No Hooks.
Returns
$this.
Usage
$WP_Background_Process = new WP_Background_Process(); $WP_Background_Process->push_to_queue( $data );
- $data(mixed) (required)
- Data.
WP_Background_Process::push_to_queue() WP Background Process::push to queue code WC 10.3.3
public function push_to_queue( $data ) {
$this->data[] = $data;
return $this;
}