acf/preview_value

acf/preview_value

Hook Type: filter

See hook in core

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

apply_filters('acf/preview_value') is found 1 times:

  • /includes/acf-value-functions.php line 354
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
         * @param   mixed $value The value to preview.
         * @param   string $post_id The post ID for this value.
         * @param   array $field The field array.
         */
        return apply_filters( 'acf/preview_value', $value, $post_id, $field );
    }
     
    // Register variation.
    acf_add_filter_variations( 'acf/preview_value', array( 'type', 'name', 'key' ), 2 );
     
    /**