How to display footer menus in wordpress

You have to register the menu, as you have done, and then use the function wp_nav_menu() in the template file where you want to display the menu.

wp_nav_menu( array(
    'theme_location' => 'footer_menu',
);