acf/untrash_{$this->hook_name}

acf/untrash_{$this->hook_name}

Hook Type: action

See hook in core

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

do_action('acf/untrash_{$this->hook_name}') is found 2 times:

  • /includes/class-acf-internal-post-type.php line 668
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
         * @since 5.0.0
         *
         * @param array $post The ACF post array.
         */
        do_action( "acf/untrash_{$this->hook_name}", $post );
     
        return true;
    }
     
    /**
     * Returns the previous post_status instead of "draft" for the ACF internal post types.
  • /includes/post-types/class-acf-field-group.php line 313
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
         * @since 5.0.0
         *
         * @param array $post The ACF post array.
         */
        do_action( "acf/untrash_{$this->hook_name}", $post );
     
        return true;
    }
     
    /**
     * Duplicates an ACF post.