Files
leon_pharmacy/blocks/sidebar-heading/sidebar-heading_register.php
Prospect Ogujiuba 7464e10f35 first commit
2024-07-02 11:00:03 -04:00

23 lines
932 B
PHP

<?php
PG_Blocks_v2::register_block_type( array(
'name' => 'leonpharmacy/sidebar-heading',
'title' => __( 'Sidebar Heading', 'leonpharmacy' ),
'category' => 'archive',
'supports' => array('color' => array('background' => false,'text' => false,'gradients' => false,'link' => false,),'typography' => array('fontSize' => false,),'anchor' => false,'align' => false,),
'base_url' => get_template_directory_uri(),
'base_path' => get_template_directory(),
'js_file' => 'blocks/sidebar-heading/sidebar-heading.js',
'attributes' => array(
'heading' => array(
'type' => 'string',
'default' => 'Heading'
)
),
'example' => array(
'heading' => 'Heading'
),
'dynamic' => false,
'version' => '1.5'
) );