| Server IP : 38.190.208.107 / Your IP : 216.73.216.187 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.12/wp-content/themes/dt-the7/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(); ?>>
<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 -->