wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_validate_site_data › WordPress Action Hooks

Since5.1.0
Deprecatedn/a
do_action( 'wp_validate_site_data', $errors, $data, $old_site )
Parameters: (3)
  • (WP_Error) $errors Error object to add validation errors to.
    Required: Yes
  • (array) $data Associative array of complete site data. See {@see wp_insert_site()} for the included data.
    Required: Yes
  • (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: Yes
Defined at:
Codex:

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.





Source

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