OwlCyberSecurity - MANAGER
Edit File: bottom-footer-hooks.php
<?php /** * Bottom Footer hooks and functions * * @package Newsmatic * @since 1.0.0 */ use Newsmatic\CustomizerDefault as ND; if( ! function_exists( 'newsmatic_bottom_footer_menu_part' ) ) : /** * Bottom Footer menu element * * @since 1.0.0 */ function newsmatic_bottom_footer_menu_part() { if( ! ND\newsmatic_get_customizer_option( 'bottom_footer_menu_option' ) ) return; ?> <div class="bottom-menu"> <?php if( has_nav_menu( 'menu-3' ) ) : wp_nav_menu( array( 'theme_location' => 'menu-3', 'menu_id' => 'bottom-footer-menu', 'depth' => 1 ) ); else : if ( is_user_logged_in() && current_user_can( 'edit_theme_options' ) ) { ?> <a href="<?php echo esc_url( admin_url( '/nav-menus.php?action=locations' ) ); ?>"><?php esc_html_e( 'Setup Bottom Footer Menu', 'newsmatic' ); ?></a> <?php } endif; ?> </div> <?php } add_action( 'newsmatic_botttom_footer_hook', 'newsmatic_bottom_footer_menu_part', 30 ); endif; if( ! function_exists( 'newsmatic_bottom_footer_copyright_part' ) ) : /** * Bottom Footer copyright element * * @since 1.0.0 */ function newsmatic_bottom_footer_copyright_part() { $bottom_footer_site_info = ND\newsmatic_get_customizer_option( 'bottom_footer_site_info' ); if( ! $bottom_footer_site_info ) return; ?> <div class="site-info"> <?php echo wp_kses_post( str_replace( '%year%', date('Y'), $bottom_footer_site_info ) ); ?> <?php echo sprintf( esc_html__( 'Powered By %s.', 'newsmatic' ), '<a href="https://blazethemes.com/">' .esc_html__( 'BlazeThemes', 'newsmatic' ). '</a>' ); ?> </div> <?php } add_action( 'newsmatic_botttom_footer_hook', 'newsmatic_bottom_footer_copyright_part', 20 ); endif; if( ! function_exists( 'newsmatic_bottom_footer_inner_wrapper_open' ) ) : /** * Bottom Footer inner wrapper open * * @since 1.0.0 */ function newsmatic_bottom_footer_inner_wrapper_open() { ?> <div class="bottom-inner-wrapper"> <?php } add_action( 'newsmatic_botttom_footer_hook', 'newsmatic_bottom_footer_inner_wrapper_open', 15 ); endif; if( ! function_exists( 'newsmatic_bottom_footer_inner_wrapper_close' ) ) : /** * Bottom Footer inner wrapper close * * @since 1.0.0 */ function newsmatic_bottom_footer_inner_wrapper_close() { ?> </div><!-- .bottom-inner-wrapper --> <?php } add_action( 'newsmatic_botttom_footer_hook', 'newsmatic_bottom_footer_inner_wrapper_close', 40 ); endif;