Title: _delete_option_fresh_site
Published: December 6, 2016
Last modified: February 24, 2026

---

# _delete_option_fresh_site()

## In this article

 * [Source](https://developer.wordpress.org/reference/functions/_delete_option_fresh_site/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/functions/_delete_option_fresh_site/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/functions/_delete_option_fresh_site/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/functions/_delete_option_fresh_site/?output_format=md#wp--skip-link--target)

This function’s access is marked private. This means it is not intended for use 
by plugin or theme developers, only by core. It is listed here for completeness.

Deletes the fresh site option.

## 󠀁[Source](https://developer.wordpress.org/reference/functions/_delete_option_fresh_site/?output_format=md#source)󠁿

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

[View all references](https://developer.wordpress.org/reference/files/wp-includes/functions.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/6.9.4/src/wp-includes/functions.php#L4749)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/6.9.4/src/wp-includes/functions.php#L4749-L4751)

## 󠀁[Related](https://developer.wordpress.org/reference/functions/_delete_option_fresh_site/?output_format=md#related)󠁿

| Uses | Description | 
| [update_option()](https://developer.wordpress.org/reference/functions/update_option/)`wp-includes/option.php` |

Updates the value of an option that was already added.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/functions/_delete_option_fresh_site/?output_format=md#changelog)󠁿

| Version | Description | 
| [4.7.0](https://developer.wordpress.org/reference/since/4.7.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Ffunctions%2F_delete_option_fresh_site%2F)
before being able to contribute a note or feedback.