WP_Background_Process::save()

Save queue


Description


Return

($this)


Source

File: classes/library/batch-processing/wp-background-process.php

		public function save() {
			$key = $this->generate_key();

			if ( ! empty( $this->data ) ) {
				update_site_option( $key, $this->data );
			}

			return $this;
		}


User Contributed Notes

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