Support › Forums › Flex Theme › Add additional row of footer widgets with different styling › Reply To: Add additional row of footer widgets with different styling
January 19, 2016 at 1:04 pm
#842
Moderator
I think that you already created the widget area. So try the following hook:
//* Add the sub footer section
add_action( 'genesis_before_footer', 'flex_additional_footer_widget_areas', 5 );
function flex_additional_footer_widget_areas() {
//* WRITE YOUR CODE HERE
}