?AlkantarClanX12
| Current Path : /home/rankinh/saintgilleslesbains-bis/wp-content/plugins/lsvr-framework/inc/ |
| Current File : /home/rankinh/saintgilleslesbains-bis/wp-content/plugins/lsvr-framework/inc/blocks-config.php |
<?php
// Register custom category
add_filter( 'block_categories_all', 'lsvr_framework_register_blocks_category' );
if ( ! function_exists( 'lsvr_framework_register_blocks_category' ) ) {
function lsvr_framework_register_blocks_category( $categories ) {
return array_merge( $categories, array(
array(
'slug' => 'lsvr-widgets',
'title' => esc_html__( 'LSVR Widgets', 'lsvr-framework' ),
),
array(
'slug' => 'lsvr-elements',
'title' => esc_html__( 'LSVR Elements', 'lsvr-framework' ),
),
));
}
}
?>