WP_Feed_Cache_Transient::unlink
Deletes transients.
Method of the class: WP_Feed_Cache_Transient{}
No Hooks.
Returns
true. Always true.
Usage
$WP_Feed_Cache_Transient = new WP_Feed_Cache_Transient(); $WP_Feed_Cache_Transient->unlink();
Changelog
| Since 2.8.0 | Introduced. |
WP_Feed_Cache_Transient::unlink() WP Feed Cache Transient::unlink code WP 6.9
public function unlink() {
delete_site_transient( $this->name );
delete_site_transient( $this->mod_name );
return true;
}