wp_validate_site_data

动作钩子


do_action( 'wp_validate_site_data', $errors, $data, $old_site )
参数
  • (WP_Error)
    $errors
    Error object to add validation errors to.
    Required:
  • (array)
    $data
    Associative array of complete site data. See {@see wp_insert_site()}
    for the included data.
    Required:
  • (WP_Site|null)
    $old_site
    The old site object if the data belongs to a site being updated,
    or null if it is a new site being inserted.
    Required:
定义位置
  • wp-includes/ms-site.php
    , line 480
引入
5.1.0
弃用

Fires when data should be validated for a site prior to inserting or updating in the database.

Plugins should amend the $errors object via its WP_Error::add() method.

do_action( 'wp_validate_site_data', $errors, $data, $old_site );