| Server IP : 60.247.133.247 / Your IP : 216.73.217.108 Web Server : Apache System : Linux ebs-119054 5.10.0-14-amd64 #1 SMP Debian 5.10.113-1 (2022-04-29) x86_64 User : goodwill ( 65985) PHP Version : 8.2.20 Disable Function : link,symlink,passthru,exec,system,shell_exec,proc_open,popen,pcntl_exec,socket_bind,stream_socket_server,pcntl_fork,pcntl_rfork MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/wwwroot/goodwill/wwwroot/wp-content/themes/GoodWill/template-parts/footer/ |
Upload File : |
<?php
/**
* Bottom bar template
*
* @package vogue
* @since 1.0.0
*/
// File Security Check
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<!-- !Bottom-bar -->
<div id="bottom-bar" <?php echo presscore_bottom_bar_class(); ?> role="contentinfo">
<div class="wf-wrap">
<div class="wf-container-bottom">
<?php
$logo = presscore_get_the_bottom_bar_logo();
if ( $logo ) {
echo '<div id="branding-bottom">';
presscore_display_the_logo( $logo );
echo '</div>';
}
do_action( 'presscore_credits' );
$config = presscore_config();
$copyrights = $config->get( 'template.bottom_bar.copyrights' );
$credits = $config->get( 'template.bottom_bar.credits' );
if ( $copyrights || $credits ) : ?>
<div class="wf-float-left">
<?php
echo do_shortcode( $copyrights );
if ( $credits ) {
echo ' Dream-Theme — truly <a href="https://dream-theme.com" target="_blank">premium WordPress themes</a>';
}
?>
</div>
<?php endif; ?>
<div class="wf-float-right">
<?php
$extended_menu = new The7_Extended_Microwidgets_Menu();
$extended_menu->add_hooks();
presscore_nav_menu_list(
'bottom',
array(
'submenu_class' => implode( ' ', presscore_get_primary_submenu_class( 'footer-sub-nav' ) ),
)
);
$extended_menu->remove_hooks();
$bottom_text = $config->get( 'template.bottom_bar.text' );
if ( $bottom_text ) {
echo '<div class="bottom-text-block">' . do_shortcode( shortcode_unautop( wpautop( $bottom_text ) ) ) . '</div>';
}
?>
</div>
</div><!-- .wf-container-bottom -->
</div><!-- .wf-wrap -->
</div><!-- #bottom-bar -->