Travel Blog
Font awesome icons not showing in Wordpress after site address URL change
function wpb_load_fa() {
wp_enqueue_style( 'wpb-fa', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css' );
}
add_action( 'wp_enqueue_scripts', 'wpb_load_fa' );
Footer
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package zillah
*/
?>
<?php zillah_hook_content_bottom(); ?>
</div><!-- .container -->
</div><!-- #content -->
<?php zillah_hook_content_after(); ?>
<?php zillah_hook_footer_before(); ?>
<footer id="colophon" class="site-footer" role="contentinfo">
<?php zillah_hook_footer_top(); ?>
<?php if ( is_active_sidebar( 'zillah-footer-widget-area-3' ) || is_active_sidebar( 'zillah-footer-widget-area' ) || is_active_sidebar( 'zillah-footer-widget-area-2' ) ) : ?>
<div class="container container-footer">
<div class="footer-inner">
<div class="row">
<div class="col-sm-4">
<?php
if ( is_active_sidebar( 'zillah-footer-widget-area' ) ) {
dynamic_sidebar( 'zillah-footer-widget-area' );
}
?>
</div>
<div class="col-sm-4">
<?php
if ( is_active_sidebar( 'zillah-footer-widget-area-2' ) ) {
dynamic_sidebar( 'zillah-footer-widget-area-2' );
}
?>
</div>
<div class="col-sm-4">
<?php
if ( is_active_sidebar( 'zillah-footer-widget-area-3' ) ) {
dynamic_sidebar( 'zillah-footer-widget-area-3' );
}
?>
</div>
</div>
</div>
</div> <!-- .container-footer -->
<?php endif; ?>
<div class="site-info">
<div class="container container-footer-info"">
<div class="footer-copyright">
<?php
printf(
/* translators: 1: Link to WordPress.org */
__( 'Proudly powered by %1$s', 'zillah' ),
/* translators: 1: s: 'WordPress' */
sprintf( '<a href="http://oppr.io/" rel="nofollow">%s</a>', esc_html__( 'oppr', 'zillah' ) )
);
?>
<span class="sep"> | </span>
<?php
printf(
/* translators: 1: Link to ThemeIsle.com */
__( 'Developed by %1$s', 'zillah' ),
/* translators: s: 'Themeisle' */
sprintf( '<a href="http://dev.oppr.io/" rel="nofollow">%s</a>', esc_html__( 'opprDev Team', 'zillah' ) )
);
?>
</div>
<div class="footer-back-top"">
<a href="#" id="to-top" class="to-top"><?php _e( 'Back to top','zillah' ); ?> <i class="fa fa-angle-double-up" aria-hidden="true"></i></a>
</div>
</div>
</div><!-- .site-info -->
<?php zillah_hook_footer_bottom(); ?>
</footer><!-- #colophon -->
<?php zillah_hook_footer_after(); ?>
</div><!-- #page -->
<?php zillah_hook_body_bottom(); ?>
<?php wp_footer(); ?>
</body>
</html>