Server : LiteSpeed System : Linux webbox1.ncrdns.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : rahcos ( 1533) PHP Version : 8.4.24 Disable Function : NONE Directory : /home4/rahcos/.trash/wp-content/themes/hara/inc/vendors/redux-framework/ |
<?php
if ( !hara_redux_framework_activated() ) return;
/**
* Class hara_redux_framework'
*/
class hara_redux_framework
{
public function __construct()
{
add_action('widgets_init', array( $this, 'widgets_init' ));
}
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
public function widgets_init()
{
register_sidebar(array(
'name' => esc_html__('Newsletter Popup', 'hara'),
'id' => 'newsletter-popup',
'description' => esc_html__('Add widgets here to appear in your site.', 'hara'),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
));
register_sidebar(array(
'name' => esc_html__('Blog Archive Sidebar', 'hara'),
'id' => 'blog-archive-sidebar',
'description' => esc_html__('Add widgets here to appear in your sidebar.', 'hara'),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
));
register_sidebar(array(
'name' => esc_html__('Blog Single Sidebar', 'hara'),
'id' => 'blog-single-sidebar',
'description' => esc_html__('Add widgets here to appear in your sidebar.', 'hara'),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
));
}
}
return new hara_redux_framework();