acf/bindings/field_not_supported_message

acf/bindings/field_not_supported_message

Hook Type: filter

See hook in core

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

apply_filters('acf/bindings/field_not_supported_message') is found 1 times:

  • /includes/Blocks/Bindings.php line 64
    			}
    
    			if ( ! acf_field_type_supports( $field['type'], 'bindings', true ) ) {
    				if ( is_preview() ) {
    					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' ) . ']' );
    				} else {
    					return '';
    				}
    			}
    
    			if ( isset( $field['allow_in_bindings'] ) && ! $field['allow_in_bindings'] ) {