acf/validate_save_post

acf/validate_save_post

Hook Type: action

See hook in core

Displaying hooks found in version: advanced-custom-fields.6.2.7

do_action('acf/validate_save_post') is found 1 times:

  • /includes/validation.php line 241
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    */
    function acf_validate_save_post( $show_errors = false ) {
     
        // action
        do_action( 'acf/validate_save_post' );
     
        // vars
        $errors = acf_get_validation_errors();
     
        // bail early if no errors
        if ( ! $errors ) {