function register_my_menus() {
register_nav_menus(
array(
'footer-menu-1' => __( 'Footer Menu 1' ),
)
);
}
add_action( 'init', 'register_my_menus' );
<?php wp_nav_menu(array( 'theme_location' => 'footer-menu-1', 'menu_class' => 'link-list last-child' )); ?><?php echo ($footer_text); ?></div><?php } ?>