Posts

Showing posts with the label WordPress

How do i register 4th sidebar column of footer in the hestia theme on its core?

How do i register 4th sidebar column of footer in the hestia theme on its core? Step1: Find Array of sidebars registered in the footer area Class Step2: You can on themes->hestia->inc->core->class-hestia-public.php You see there is a public function, you can change here 3 to 4 0r 5 whatever you want, you can add in filters at first public function initialize_widgets() { $footer_sidebars_array = apply_filters(             'hestia_footer_widget_areas_array', array(                 'footer-one-widgets'   => esc_html__( 'Footer One', 'hestia' ),                 'footer-two-widgets'   => esc_html__( 'Footer Two', 'hestia' ),                 'footer-three-widgets' => esc_html__( 'Footer Three', 'hestia' ),  ...