acf/fields/flexible_content/layout_title filter-hookACF 1.0

Usage

add_filter( 'acf/fields/flexible_content/layout_title', 'wp_kama_acf_fields_flexible_content_layout_title_filter', 10, 4 );

/**
 * Function for `acf/fields/flexible_content/layout_title` filter-hook.
 * 
 * @param  $title  
 * @param  $field  
 * @param  $layout 
 * @param  $order  
 *
 * @return 
 */
function wp_kama_acf_fields_flexible_content_layout_title_filter( $title, $field, $layout, $order ){
	// filter...
	return $title;
}
$title
-
$field
-
$layout
-
$order
-

Where the hook is called

Layout::get_title()
acf/fields/flexible_content/layout_title
acf/src/Pro/Fields/FlexibleContent/Layout.php 315
$title = apply_filters( 'acf/fields/flexible_content/layout_title', $title, $this->field, $this->layout, $this->order );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.