Usage
add_action( 'add_site_option', 'your_callback_function', 10, 3 );Action Callback:
function your_callback_function( $option, $value, $network_id ) {
// Your code here
}Parameters
$optionParameter 1
$valueParameter 2
$network_idParameter 3
⚡ Action Hook
Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.