?AlkantarClanX12
| Current Path : /home/r/a/n/rankinh/numerik/wp-content/themes/blackdsn/inc/ |
| Current File : /home/r/a/n/rankinh/numerik/wp-content/themes/blackdsn/inc/function-widget.php |
<?php
add_action( 'widgets_init', function () {
$before_widget = '<div id="%1$s" class="widget %2$s">';
$after_widget = '</div>';
$before_title = '<h4 class="title-s heading title-style">';
$after_title = '</h4>';
/**
*
* Sidebar Blog
*
*/
register_sidebar( array(
'id' => 'blog-sidebar-1',
'name' => esc_html__( 'Blackdsn Blog Sidebar', 'blackdsn' ),
'description' => esc_html__( 'This is the widgets blog sidebar.', 'blackdsn' ),
'before_widget' => $before_widget,
'after_widget' => $after_widget,
'before_title' => $before_title,
'after_title' => $after_title,
) );
} );
add_action( 'elementor/widgets/wordpress/widget_args', function ( $args ) {
$args['before_title'] = '<h4 class="subtitle p-relative line-shape line-shape-after "><span class="background-revere ">';
$args['after_title'] = "</span></h4>";
return $args;
} );