I made child theme with adding this to it:
register_nav_menus(
array(
‘main_navigation’ => __(‘Primary Menu’, ‘terrifico’),
‘footer-menu’ => __( ‘Footer Menu’, ‘terrifico’),
)
);
Then change this in copyright.php:
<span class=”right”><?wp_nav_menu( array( ‘theme_location’ => ‘footer-menu’, ‘container_class’ => ‘footer_menu’ ) ); ?></span>
And of course some styling.