function my_custom_footer_widgets() {
register_sidebar(array(
‘name’ => __(‘Footer Widget Area’, ‘textdomain’),
‘id’ => ‘footer-widget-area’,
‘before_widget’ => ‘
‘,
‘before_title’ => ‘
‘,
‘after_title’ => ‘
‘,
));
}
add_action(‘widgets_init’, ‘my_custom_footer_widgets’);
