acf/shortcode/disabled_message filter-hookACF 1.0

Usage

add_filter( 'acf/shortcode/disabled_message', 'wp_kama_acf_shortcode_disabled_message_filter' );

/**
 * Function for `acf/shortcode/disabled_message` filter-hook.
 * 
 * @param  $esc_html__ 
 *
 * @return 
 */
function wp_kama_acf_shortcode_disabled_message_filter( $esc_html__ ){
	// filter...
	return $esc_html__;
}
$esc_html__
-

Where the hook is called

acf_shortcode()
acf/shortcode/disabled_message
acf/includes/api/api-template.php 1020
return apply_filters( 'acf/shortcode/disabled_message', esc_html__( '[The ACF shortcode is disabled on this site]', 'acf' ) );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.