WP_Background_Process::delete( string $key )

Delete queue


Description


Parameters

$key

(string) (Required) Key.


Return

($this)


Source

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

		public function delete( $key ) {
			delete_site_option( $key );

			return $this;
		}


User Contributed Notes

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