Remove Hestia | Developed by ThemeIsle
put this code snippet in the themes functions.php
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
add_action( 'template_redirect', 'boswall_hestia_theme_mod_handle_hooks' );
function boswall_hestia_theme_mod_handle_hooks() {
remove_all_actions( 'hestia_do_bottom_footer_content' );
add_action( 'hestia_do_bottom_footer_content', 'boswall_hestia_theme_mod_bottom_footer_content' );
}
function boswall_hestia_theme_mod_bottom_footer_content() {
wp_nav_menu(
array(
'theme_location' => 'footer',
'depth' => 1,
'container' => 'ul',
'menu_class' => 'footer-menu',
)
);
echo '<div class="copyright pull-right">';
echo '<p>© ' . date( 'Y' ) . ' ' . get_bloginfo( 'name' ) . '</p>';
echo '</div>';
}