/*
	Theme Name:	TheLaw Child
	Theme URI:	https://themetor.com/thelaw/
	Description:Law Firm and Attorney WordPress Theme
	Author:		ThemeTor
	Author URI:	https://themetor.com/
	Template:	thelaw
	Version:	1.0
*/

/*
	PLEASE DO NOT edit this file, if you want add custom CSS go to Theme Options > Additional CSS
*/



function kinsta_register_widgets() {
  
 register_sidebar( array(
  'name' => __( 'After Content Widget Area', 'kinsta' ),
  'id' => 'after-content-widget-area',
  'description' => __( 'Widget area after the content', 'kinsta' ),
  'before_widget' => '
 
<div id="%1$s" class="widget-container %2$s">',
  'after_widget' => '</div>
 
 
',
  'before_title' => '
 
<h3 class="widget-title">',
  'after_title' => '</h3>
 
 
',
 
 ) );
 
}
 
add_action( 'widgets_init', 'kinsta_register_widgets' );