update_site_option_{$option}

动作钩子


do_action( "update_site_option_{$option}", $option, $value, $old_value, $network_id )
参数
  • (string)
    $option
    Name of the network option.
    Required:
  • (mixed)
    $value
    Current value of the network option.
    Required:
  • (mixed)
    $old_value
    Old value of the network option.
    Required:
  • (int)
    $network_id
    ID of the network.
    Required:
定义位置
  • wp-includes/option.php
    , line 1848
引入
4.7.0
弃用

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.

do_action( "update_site_option_{$option}", $option, $value, $old_value, $network_id );