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

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

add_filter( 'acf/blocks/prevent_edit_forms_on_rest_endpoints', 'wp_kama_acf_blocks_prevent_edit_forms_on_rest_endpoints_filter' );

/**
 * Function for `acf/blocks/prevent_edit_forms_on_rest_endpoints` filter-hook.
 * 
 * @param  $true 
 *
 * @return 
 */
function wp_kama_acf_blocks_prevent_edit_forms_on_rest_endpoints_filter( $true ){

	// filter...
	return $true;
}
$true
-

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

acf_rendered_block()
acf/blocks/prevent_edit_forms_on_rest_endpoints
acf/pro/blocks.php 602
if ( $form && acf_get_data( 'acf_inside_rest_call' ) && apply_filters( 'acf/blocks/prevent_edit_forms_on_rest_endpoints', true ) ) {

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

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