acf/load_value

acf/load_value

Hook Type: filter

See hook in core

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

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

  • /includes/acf-value-functions.php line 108
    	 * @param   mixed $value The value to preview.
    	 * @param   string $post_id The post ID for this value.
    	 * @param   array $field The field array.
    	 */
    	$value = apply_filters( 'acf/load_value', $value, $post_id, $field );
    
    	// Update store.
    	$store->set( "$post_id:$field_name", $value );
    
    	// Return value.
    	return $value;