update_network_option() WordPress Function

The update_network_option() function allows you to update a network option for a given network. The function takes two arguments: the network ID and the option name. The function will return false if the network option does not exist.

update_network_option( int $network_id, string $option, mixed $value ) #

Updates the value of a network option that was already added.


Description

Top ↑

See also


Top ↑

Parameters

$network_id

(int)(Required)ID of the network. Can be null to default to the current network ID.

$option

(string)(Required)Name of the option. Expected to not be SQL-escaped.

$value

(mixed)(Required)Option value. Expected to not be SQL-escaped.


Top ↑

Return

(bool) True if the value was updated, false otherwise.


Top ↑

Source

File: wp-includes/option.php

1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
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
1836
1837
1838
1839
1840
1841
function update_network_option( $network_id, $option, $value ) {
    global $wpdb;
 
    if ( $network_id && ! is_numeric( $network_id ) ) {
        return false;
    }
 
    $network_id = (int) $network_id;
 
    // Fallback to the current network if a network ID is not specified.
    if ( ! $network_id ) {
        $network_id = get_current_network_id();
    }
 
    wp_protect_special_option( $option );
 
    $old_value = get_network_option( $network_id, $option, false );
 
    /**
     * Filters a specific network option before its value is updated.
     *
     * The dynamic portion of the hook name, `$option`, refers to the option name.
     *
     * @since 2.9.0 As 'pre_update_site_option_' . $key
     * @since 3.0.0
     * @since 4.4.0 The `$option` parameter was added.
     * @since 4.7.0 The `$network_id` parameter was added.
     *
     * @param mixed  $value      New value of the network option.
     * @param mixed  $old_value  Old value of the network option.
     * @param string $option     Option name.
     * @param int    $network_id ID of the network.
     */
    $value = apply_filters( "pre_update_site_option_{$option}", $value, $old_value, $option, $network_id );
 
    /*
     * If the new and old values are the same, no need to update.
     *
     * Unserialized values will be adequate in most cases. If the unserialized
     * data differs, the (maybe) serialized data is checked to avoid
     * unnecessary database calls for otherwise identical object instances.
     *
     */
    if ( $value === $old_value || maybe_serialize( $value ) === maybe_serialize( $old_value ) ) {
        return false;
    }
 
    if ( false === $old_value ) {
        return add_network_option( $network_id, $option, $value );
    }
 
    $notoptions_key = "$network_id:notoptions";
    $notoptions     = wp_cache_get( $notoptions_key, 'site-options' );
 
    if ( is_array( $notoptions ) && isset( $notoptions[ $option ] ) ) {
        unset( $notoptions[ $option ] );
        wp_cache_set( $notoptions_key, $notoptions, 'site-options' );
    }
 
    if ( ! is_multisite() ) {
        $result = update_option( $option, $value, 'no' );
    } else {
        $value = sanitize_option( $option, $value );
 
        $serialized_value = maybe_serialize( $value );
        $result           = $wpdb->update(
            $wpdb->sitemeta,
            array( 'meta_value' => $serialized_value ),
            array(
                'site_id'  => $network_id,
                'meta_key' => $option,
            )
        );
 
        if ( $result ) {
            $cache_key = "$network_id:$option";
            wp_cache_set( $cache_key, $value, 'site-options' );
        }
    }
 
    if ( $result ) {
 
        /**
         * Fires after the value of a specific network option has been successfully updated.
         *
         * The dynamic portion of the hook name, `$option`, refers to the option name.
         *
         * @since 2.9.0 As "update_site_option_{$key}"
         * @since 3.0.0
         * @since 4.7.0 The `$network_id` parameter was added.
         *
         * @param string $option     Name of the network option.
         * @param mixed  $value      Current value of the network option.
         * @param mixed  $old_value  Old value of the network option.
         * @param int    $network_id ID of the network.
         */
        do_action( "update_site_option_{$option}", $option, $value, $old_value, $network_id );
 
        /**
         * Fires after the value of a network option has been successfully updated.
         *
         * @since 3.0.0
         * @since 4.7.0 The `$network_id` parameter was added.
         *
         * @param string $option     Name of the network option.
         * @param mixed  $value      Current value of the network option.
         * @param mixed  $old_value  Old value of the network option.
         * @param int    $network_id ID of the network.
         */
        do_action( 'update_site_option', $option, $value, $old_value, $network_id );
 
        return true;
    }
 
    return false;
}


Top ↑

Changelog

Changelog
VersionDescription
4.4.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