_delete_option_fresh_site

The timeline below displays how wordpress function _delete_option_fresh_site has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.1

/**
 * Deletes the fresh site option.
 *
 * @since 4.7.0
 * @access private
 */
function _delete_option_fresh_site()
{
    update_option('fresh_site', '0');
}

WordPress Version: 4.9

/**
 * Delete the fresh site option.
 *
 * @since 4.7.0
 * @access private
 */
function _delete_option_fresh_site()
{
    update_option('fresh_site', '0');
}

WordPress Version: 4.7

/**
 * Delete the fresh site option.
 *
 * @since 4.7.0
 * @access private
 */
function _delete_option_fresh_site()
{
    update_option('fresh_site', 0);
}