delete_network_option() WordPress Function
The delete_network_option() function is used to delete a network option from the database. This function takes two arguments: the name of the network option to delete, and the name of the network to delete the option from. This function can be useful when you need to clean up after a plugin or theme that has been uninstalled. It can also be used to remove old data that is no longer needed.
delete_network_option( int $network_id, string $option ) #
Removes a network option by name.
Description
See also
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 to delete. Expected to not be SQL-escaped.
Return
(bool) True if the option was deleted, false otherwise.
Source
File: wp-includes/option.php
1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 | function delete_network_option( $network_id , $option ) { 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(); } /** * Fires immediately before a specific network option is deleted. * * The dynamic portion of the hook name, `$option`, refers to the option name. * * @since 3.0.0 * @since 4.4.0 The `$option` parameter was added. * @since 4.7.0 The `$network_id` parameter was added. * * @param string $option Option name. * @param int $network_id ID of the network. */ do_action( "pre_delete_site_option_{$option}" , $option , $network_id ); if ( ! is_multisite() ) { $result = delete_option( $option ); } else { $row = $wpdb ->get_row( $wpdb ->prepare( "SELECT meta_id FROM {$wpdb->sitemeta} WHERE meta_key = %s AND site_id = %d" , $option , $network_id ) ); if ( is_null ( $row ) || ! $row ->meta_id ) { return false; } $cache_key = "$network_id:$option" ; wp_cache_delete( $cache_key , 'site-options' ); $result = $wpdb -> delete ( $wpdb ->sitemeta, array ( 'meta_key' => $option , 'site_id' => $network_id , ) ); } if ( $result ) { /** * Fires after a specific network option has been deleted. * * The dynamic portion of the hook name, `$option`, refers to the option name. * * @since 2.9.0 As "delete_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 int $network_id ID of the network. */ do_action( "delete_site_option_{$option}" , $option , $network_id ); /** * Fires after a network option has been deleted. * * @since 3.0.0 * @since 4.7.0 The `$network_id` parameter was added. * * @param string $option Name of the network option. * @param int $network_id ID of the network. */ do_action( 'delete_site_option' , $option , $network_id ); return true; } return false; } |
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |