_delete_option_fresh_site()WP 4.7.0

Deletes the fresh site option.

Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.

No Hooks.

Return

null. Nothing (null).

Usage

_delete_option_fresh_site();

Changelog

Since 4.7.0 Introduced.

_delete_option_fresh_site() code WP 6.5.2

function _delete_option_fresh_site() {
	update_option( 'fresh_site', '0' );
}