ACF\Blocks
Bindings::__construct
Block Bindings constructor.
Метод класса: Bindings{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Bindings = new Bindings(); $Bindings->__construct();
Код Bindings::__construct() Bindings:: construct ACF 6.8.8
public function __construct() {
// Final check we're on WP 6.5 or newer.
if ( ! function_exists( 'register_block_bindings_source' ) ) {
return;
}
add_action( 'acf/init', array( $this, 'register_binding_sources' ) );
}