Remove Hestia | Developed by ThemeIsle

Published by sonicbee on

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>&copy; ' . date( 'Y' ) . ' ' . get_bloginfo( 'name' ) . '</p>';
	echo '</div>';
}
Categories: Wordpress