acf/register_block_type_args

Last updated Feb 17, 2022

Description

Filters the arguments for registering a block type.

This filter is applied during the acf_register_block_type() function after defaults have been merged and before the block type has been registered.

Changelog

  • Added in version 5.8.9

Parameters

apply_filters( 'acf/register_block_type_args', $args );
  • $args (array) The array of arguments for registering a block type.

Example

This example demonstrates how to apply a custom render callback for all block types.

functions.php

<?php
add_filter('acf/register_block_type_args', 'my_acf_register_block_type_args');
function my_acf_register_block_type_args( $args ){
    $args['render_template'] = '';
    $args['render_callback'] = 'my_render_callback';
    return $args;
}
Supercharge Your Website With Premium Features Using ACF PRO

Speed up your workflow and unlock features to better develop websites using ACF Blocks and Options Pages, with the Flexible Content, Repeater, Clone, Gallery Fields & More.

Explore Features View Pricing

PRO Features
ACF Blocks
Options Pages
PRO Fields
Repeater
Flexible Content
Gallery
Clone