acf_get_block_type()
Returns a block type for the given name.
Хуков нет.
Возвращает
(Массив|null)
.
Использование
acf_get_block_type( $name );
- $name(строка) (обязательный)
- The block type name.
Список изменений
С версии 5.7.12 | Введена. |
Код acf_get_block_type() acf get block type ACF 6.0.4
function acf_get_block_type( $name ) { return acf_get_store( 'block-types' )->get( $name ); }