HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/shaan/includes/widgets.php
<?php

function shaan_widgets_init() {
	register_sidebar( array(
		'name'              =>  esc_html__( 'Sidebar', 'shaan' ),
		'id'                =>  'sidebar-primary',
		'description'       =>  esc_html__( 'Add widgets here to appear in your sidebar.', 'shaan' ),
		'before_widget'     =>  '<section id="%1$s" class="widget %2$s">',
		'after_widget'      =>  '</section>',
		'before_title'      =>  '<h4 class="widget-title">',
		'after_title'       =>  '</h4>'
	) );

	register_sidebar( array(
		'name'              =>  esc_html__( 'Header', 'shaan' ),
		'id'                =>  'sidebar-header',
		'description'       =>  esc_html__( 'Add text, image, video text, or HTML widgets here to appear in your header below the site title / logo.', 'shaan' ),
		'before_widget'     =>  '<section id="%1$s" class="widget %2$s">',
		'after_widget'      =>  '</section>',
		'before_title'      =>  '<h4 class="widget-title">',
		'after_title'       =>  '</h4>'
	) );

}