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