| Server IP : 121.121.20.254 / Your IP : 216.73.216.41 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/themes/unblock/layouts/ |
Upload File : |
<?php
/**
* Theme footer layouts
* @package unBlock
* @since 1.0.1
*/
if (!defined('ABSPATH')) {
exit; // Exit if accessed directly.
}
/* BLOG LAYOUT
====================================================*/
if (!function_exists('unblock_footer_styles')) :
function unblock_footer_styles()
{
$unblock_footer_style = apply_filters('unblock_footer_style', get_theme_mod('unblock_footer_style', 'footer1'));
// Start
?>
<footer class="container px-4 flex-wrap align-items-center">
<div class="col-md-6 d-flex align-items-center">
<?php unblock_footer_branding(); ?>
</div>
<?php //Social Menu
if (has_nav_menu('social')) {
wp_nav_menu(
array(
'menu_id' => 'social-nav',
'menu_class' => 'col-md-6 justify-content-end',
'theme_location' => 'social',
'container' => 'ul',
'depth' => 1,
'link_before' => '<span>',
'link_after' => '</span>',
)
);
}
?>
<div id="copyright" class="text-muted">
<?php esc_html_e('Copyright ©', 'unblock');
echo esc_html(date_i18n(__('Y', 'unblock'))); ?>
<span id="copyright-name"><?php echo esc_html(get_theme_mod('unblock_copyright')); ?></span>.
<?php esc_html_e('All rights reserved.', 'unblock'); ?>
</div>
</footer>
<?php // End
}
endif;