Tagged: footer, new, widget area
I would like to add another widget area in the footer, between the current one and the socket, with different background and number of widgets.
Please advise as to the best practice to achieve that. Used this as a starting point but not aware of what I should change to make it work for the footer area.
Thank you!
Hey maximaker,
Please add following code to Functions.php file of your child theme in Appearance > Editor
add_action( 'avia_after_footer_columns', 'enfold_customization_socket_widget_area' );
function enfold_customization_socket_widget_area() {
dynamic_sidebar( 'socket' );
}
and then go to Appearance > Widgets and create a new widget area called “socket” and place your widgets inside it :)
Best regards,
Yigit