WP_Background_Process::delete( string $key )

Delete queue


Parameters Parameters

$key

(string) (Required) Key.


Top ↑

Return Return

($this)


Top ↑

Source Source

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

130
131
132
133
134
public function delete( $key ) {
    delete_site_option( $key );
 
    return $this;
}

Top ↑

User Contributed Notes User Contributed Notes

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