acf/blocks/template_not_found_message хук-фильтрACF 1.0

Использование

add_filter( 'acf/blocks/template_not_found_message', 'wp_kama_acf_blocks_template_not_found_message_filter' );

/**
 * Function for `acf/blocks/template_not_found_message` filter-hook.
 * 
 * @param  $html 
 *
 * @return 
 */
function wp_kama_acf_blocks_template_not_found_message_filter( $html ){
	// filter...
	return $html;
}
$html
-

Где вызывается хук

acf_block_render_template()
acf/blocks/template_not_found_message
acf/pro/blocks.php 1153
echo acf_esc_html( apply_filters( 'acf/blocks/template_not_found_message', '<p>' . __( 'The render template for this ACF Block was not found', 'acf' ) . '</p>' ) );

Где используется хук в Advanced Custom Fields PRO

Использование не найдено.