acf/bindings/field_not_supported_message
Usage
add_filter( 'acf/bindings/field_not_supported_message', 'wp_kama_acf_bindings_field_not_supported_message_filter' );
/**
* Function for `acf/bindings/field_not_supported_message` filter-hook.
*
* @param $string
*
* @return
*/
function wp_kama_acf_bindings_field_not_supported_message_filter( $string ){
// filter...
return $string;
}
- $string
- -
Where the hook is called
acf/bindings/field_not_supported_message
acf/src/Blocks/Bindings.php 70
return apply_filters( 'acf/bindings/field_not_supported_message', '[' . esc_html__( 'The requested ACF field type does not support output in Block Bindings or the ACF shortcode.', 'acf' ) . ']' );