Function Signature:
add_network_option
Function Description:
Function Examples:
⚠️ Examples below are generated with GPT-3 once every hour. Do not take them too seriously.
Consider them as some extra input in your learning process - reason about them. Will it work? What could fail?
// Example 1: Adding a network option with a default value
add_network_option( 'my_network', 'custom_option', 'default_value' );
// Example 2: Updating an existing network option
$current_value = get_network_option( 'my_network', 'custom_option' );
$new_value = $current_value + 1;
update_network_option( 'my_network', 'custom_option', $new_value );
// Example 3: Removing a network option
delete_network_option( 'my_network', 'custom_option' );