acf/import_{$this->hook_name}

acf/import_{$this->hook_name}

Hook Type: action

See hook in core

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

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

  • /includes/class-acf-internal-post-type.php line 924
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
                 * @since 5.0.0
                 *
                 * @param   array $post The ACF post array.
                 */
                do_action( "acf/import_{$this->hook_name}", $post );
     
                return $post;
            }
        }
     
    }
  • /includes/post-types/class-acf-field-group.php line 538
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
                 * @since 5.0.0
                 *
                 * @param   array $post The ACF post array.
                 */
                do_action( "acf/import_{$this->hook_name}", $post );
     
                return $post;
            }
        }
     
    }