acf_the_editor_content filter-hookACF 1.0

Usage

add_filter( 'acf_the_editor_content', 'wp_kama_acf_the_editor_content_filter', 10, 2 );

/**
 * Function for `acf_the_editor_content` filter-hook.
 * 
 * @param  $field_value    
 * @param  $default_editor 
 *
 * @return 
 */
function wp_kama_acf_the_editor_content_filter( $field_value, $default_editor ){

	// filter...
	return $field_value;
}
$field_value
-
$default_editor
-

Where the hook is called

acf_field_wysiwyg::render_field()
acf_the_editor_content
acf/includes/fields/class-acf-field-wysiwyg.php 230
$field['value'] = apply_filters( 'acf_the_editor_content', $field['value'], $default_editor );

Where the hook is used in Advanced Custom Fields PRO

acf/includes/fields/class-acf-field-wysiwyg.php 227
add_filter( 'acf_the_editor_content', 'format_for_editor', 10, 2 );