is_blog_installed() WordPress Function

The is_blog_installed() function in WordPress checks whether a blog is installed. This function is used by the installation process and during upgrade. It is also used by the wp-admin/includes/upgrade.php script.

is_blog_installed() #

Determines whether WordPress is already installed.


Description

The cache will be checked first. If you have a cache plugin, which saves the cache values, then this will work. If you use the default WordPress cache, and the database goes away, then you might have problems.

Checks for the ‘siteurl’ option for whether WordPress is installed.

For more information on this and similar theme functions, check out the Conditional Tags article in the Theme Developer Handbook.


Top ↑

Return

(bool) Whether the site is already installed.


Top ↑

Source

File: wp-includes/functions.php

1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
function is_blog_installed() {
    global $wpdb;
 
    /*
     * Check cache first. If options table goes away and we have true
     * cached, oh well.
     */
    if ( wp_cache_get( 'is_blog_installed' ) ) {
        return true;
    }
 
    $suppress = $wpdb->suppress_errors();
    if ( ! wp_installing() ) {
        $alloptions = wp_load_alloptions();
    }
    // If siteurl is not set to autoload, check it specifically.
    if ( ! isset( $alloptions['siteurl'] ) ) {
        $installed = $wpdb->get_var( "SELECT option_value FROM $wpdb->options WHERE option_name = 'siteurl'" );
    } else {
        $installed = $alloptions['siteurl'];
    }
    $wpdb->suppress_errors( $suppress );
 
    $installed = ! empty( $installed );
    wp_cache_set( 'is_blog_installed', $installed );
 
    if ( $installed ) {
        return true;
    }
 
    // If visiting repair.php, return true and let it take over.
    if ( defined( 'WP_REPAIRING' ) ) {
        return true;
    }
 
    $suppress = $wpdb->suppress_errors();
 
    /*
     * Loop over the WP tables. If none exist, then scratch installation is allowed.
     * If one or more exist, suggest table repair since we got here because the
     * options table could not be accessed.
     */
    $wp_tables = $wpdb->tables();
    foreach ( $wp_tables as $table ) {
        // The existence of custom user tables shouldn't suggest an unwise state or prevent a clean installation.
        if ( defined( 'CUSTOM_USER_TABLE' ) && CUSTOM_USER_TABLE == $table ) {
            continue;
        }
        if ( defined( 'CUSTOM_USER_META_TABLE' ) && CUSTOM_USER_META_TABLE == $table ) {
            continue;
        }
 
        $described_table = $wpdb->get_results( "DESCRIBE $table;" );
        if (
            ( ! $described_table && empty( $wpdb->last_error ) ) ||
            ( is_array( $described_table ) && 0 === count( $described_table ) )
        ) {
            continue;
        }
 
        // One or more tables exist. This is not good.
 
        wp_load_translations_early();
 
        // Die with a DB error.
        $wpdb->error = sprintf(
            /* translators: %s: Database repair URL. */
            __( 'One or more database tables are unavailable. The database may need to be <a href="%s">repaired</a>.' ),
            'maint/repair.php?referrer=is_blog_installed'
        );
 
        dead_db();
    }
 
    $wpdb->suppress_errors( $suppress );
 
    wp_cache_set( 'is_blog_installed', false );
 
    return false;
}


Top ↑

Changelog

Changelog
VersionDescription
2.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by the Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More