HEX
Server: Apache/2
System: Linux ns65.hostinglotus.net 4.18.0-553.16.1.el8_10.x86_64 #1 SMP Thu Aug 8 07:11:46 EDT 2024 x86_64
User: newsnnno (1225)
PHP: 8.2.20
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/newsnnno/domains/phetmedia.com/public_html/news/wp-content/themes/bloghash/inc/widgets.php
<?php
/**
 * Widget customization and register sidebar widget areas.
 *
 * @package BlogHash
 * @author  Peregrine Themes
 * @since   1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! function_exists( 'bloghash_widgets_init' ) ) :
	/**
	 * Register widget area.
	 *
	 * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
	 * @since 1.0.0
	 */
	function bloghash_widgets_init() {

		// Default Sidebar.
		register_sidebar(
			array(
				'name'          => esc_html__( 'Default Sidebar', 'bloghash' ),
				'id'            => 'sidebar-1',
				'description'   => esc_html__( 'Widgets in this area are displayed in the left or right sidebar area based on your Default Sidebar Position settings.', 'bloghash' ),
				'before_widget' => '<div id="%1$s" class="bloghash-sidebar-widget bloghash-widget bloghash-entry widget %2$s">',
				'after_widget'  => '</div>',
				'before_title'  => '<div class="h4 widget-title">',
				'after_title'   => '</div>',
			)
		);

		// Footer 1.
		register_sidebar(
			array(
				'name'          => esc_html__( 'Footer 1', 'bloghash' ),
				'id'            => 'bloghash-footer-1',
				'description'   => esc_html__( 'Widgets in this area are displayed in the first footer column.', 'bloghash' ),
				'before_widget' => '<div id="%1$s" class="bloghash-footer-widget bloghash-widget bloghash-entry widget %2$s">',
				'after_widget'  => '</div>',
				'before_title'  => '<div class="h4 widget-title">',
				'after_title'   => '</div>',
			)
		);

		// Footer 2.
		register_sidebar(
			array(
				'name'          => esc_html__( 'Footer 2', 'bloghash' ),
				'id'            => 'bloghash-footer-2',
				'description'   => esc_html__( 'Widgets in this area are displayed in the second footer column.', 'bloghash' ),
				'before_widget' => '<div id="%1$s" class="bloghash-footer-widget bloghash-widget bloghash-entry widget %2$s">',
				'after_widget'  => '</div>',
				'before_title'  => '<div class="h4 widget-title">',
				'after_title'   => '</div>',
			)
		);

		// Footer 3.
		register_sidebar(
			array(
				'name'          => esc_html__( 'Footer 3', 'bloghash' ),
				'id'            => 'bloghash-footer-3',
				'description'   => esc_html__( 'Widgets in this area are displayed in the third footer column.', 'bloghash' ),
				'before_widget' => '<div id="%1$s" class="bloghash-footer-widget bloghash-widget bloghash-entry widget %2$s">',
				'after_widget'  => '</div>',
				'before_title'  => '<div class="h4 widget-title">',
				'after_title'   => '</div>',
			)
		);

		// Footer 4.
		register_sidebar(
			array(
				'name'          => esc_html__( 'Footer 4', 'bloghash' ),
				'id'            => 'bloghash-footer-4',
				'description'   => esc_html__( 'Widgets in this area are displayed in the fourth footer column.', 'bloghash' ),
				'before_widget' => '<div id="%1$s" class="bloghash-footer-widget bloghash-widget bloghash-entry widget %2$s clr">',
				'after_widget'  => '</div>',
				'before_title'  => '<div class="h4 widget-title">',
				'after_title'   => '</div>',
			)
		);
	}
endif;
add_action( 'widgets_init', 'bloghash_widgets_init' );