acf/shortcode/post_not_public_message filter-hookACF 1.0

Usage

add_filter( 'acf/shortcode/post_not_public_message', 'wp_kama_acf_shortcode_post_not_public_message_filter' );

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

Where the hook is called

acf_shortcode()
acf/shortcode/post_not_public_message
acf/includes/api/api-template.php 1063
return apply_filters( 'acf/shortcode/post_not_public_message', esc_html__( '[The ACF shortcode cannot display fields from non-public posts]', 'acf' ) );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.