get_footer_content($path);
if (!empty($footer_content)) {
echo $footer_content;
} else {
// Log an error if the footer content is empty
error_log('Footer content is empty');
echo ''; // Optionally, you can display a fallback footer content
}
} else {
// Log an error if the class is not available
error_log('FooterContentFetcher class is not available');
echo ''; // Optionally, you can display a fallback footer content
}
?>
' . esc_html( get_bloginfo( 'name', 'display' ) ) . '. ' . esc_html( $footer_copyright_text );
//
// echo esc_html__(' | Theme: ', 'blook') . 'Blook ' . esc_html__('By ', 'blook') . '' . esc_html__('Themeinwp. ', 'blook') . '';
// echo esc_html__(' | Powered by ', 'blook') . '' . esc_html__('WordPress', 'blook') . '';
//
// ?>
'blook-footer-nav',
'menu_id' => 'footer-menu',
'container' => 'div',
'menu_class' => 'blook-footer-menu',
'depth' => '1',
)
);
}
endif;
add_action( 'blook_footer_navigation_action','blook_footer_navigation_menu',10 );