| Server IP : 27.254.66.5 / Your IP : 216.73.217.39 Web Server : Apache/2 System : Linux cs82.hostneverdie.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64 User : technic2 ( 1951) PHP Version : 7.4.30 Disable Function : apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd,exec, fp, fput, highlight_file, ini_alter, ini_restore, inject_code, passthru,phpAds_remoteInfo, phpAds_XmlRpc,phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid,posix_setuid, posix_setuid, posix_uname,proc_open,proc_close, proc_get_status, proc_nice, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode, show_source,sleep,pcntl_exec,virtual,suexec,dbmopen,dl,symlink,disk_free_space,diskfreespace,leak MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/technic2/public_html/old-website/wp-content/themes/education-base/acmethemes/hooks/ |
Upload File : |
<?php
/**
* Footer content
*
* @since Education Base 1.0.0
*
* @param null
* @return null
*
*/
if ( ! function_exists( 'education_base_footer' ) ) :
function education_base_footer() {
global $education_base_customizer_all_values;
?>
<div class="clearfix"></div>
<footer class="site-footer">
<?php
if(
is_active_sidebar('footer-col-one') ||
is_active_sidebar('footer-col-two') ||
is_active_sidebar('footer-col-three') ||
is_active_sidebar('footer-col-four')
) {
?>
<div class="container">
<div class="bottom">
<div id="footer-top">
<div class="footer-columns at-fixed-width">
<?php
$footer_top_col = 'col-sm-3 init-animate slideInUp1';
if (is_active_sidebar('footer-col-one')) : ?>
<div class="footer-sidebar <?php echo esc_attr($footer_top_col); ?>">
<?php dynamic_sidebar('footer-col-one'); ?>
</div>
<?php endif;
if (is_active_sidebar('footer-col-two')) : ?>
<div class="footer-sidebar <?php echo esc_attr($footer_top_col); ?>">
<?php dynamic_sidebar('footer-col-two'); ?>
</div>
<?php endif;
if (is_active_sidebar('footer-col-three')) : ?>
<div class="footer-sidebar <?php echo esc_attr($footer_top_col); ?>">
<?php dynamic_sidebar('footer-col-three'); ?>
</div>
<?php endif;
if (is_active_sidebar('footer-col-four')) : ?>
<div class="footer-sidebar <?php echo esc_attr($footer_top_col); ?>">
<?php dynamic_sidebar('footer-col-four'); ?>
</div>
<?php endif; ?>
</div>
</div><!-- #foter-top -->
</div><!-- bottom-->
</div>
<div class="clearfix"></div>
<?php
}
?>
<div class="copy-right">
<div class='container'>
<div class="row">
<div class="col-sm-4 init-animate fadeInDown">
<?php
if ( 1 == $education_base_customizer_all_values['education-base-enable-social'] ) {
/**
* Social Sharing
* education_base_action_social_links
* @since Education Base 1.0.0
*
* @hooked education_base_social_links - 10
*/
echo "<div class='text-left'>";
do_action('education_base_action_social_links');
echo "</div>";
}
?>
</div>
<div class="col-sm-4 init-animate fadeInDown">
<?php
if( isset( $education_base_customizer_all_values['education-base-footer-copyright'] ) ): ?>
<p class="text-center">
<?php echo wp_kses_post( $education_base_customizer_all_values['education-base-footer-copyright'] ); ?>
</p>
<?php endif;
?>
</div>
<div class="col-sm-4 init-animate fadeInDown">
<div class="footer-copyright border text-right">
<div class="site-info">
<?php printf( esc_html__( '%1$s by %2$s', 'education-base' ), 'Education Base', '<a href="http://www.acmethemes.com/" rel="designer">Acme Themes</a>' ); ?>
</div><!-- .site-info -->
</div>
</div>
</div>
</div>
<a href="#page" class="sm-up-container"><i class="fa fa-angle-up sm-up"></i></a>
</div>
</footer>
<?php
}
endif;
add_action( 'education_base_action_footer', 'education_base_footer', 10 );
/**
* Page end
*
* @since Education Base 1.1.0
*
* @param null
* @return null
*
*/
if ( ! function_exists( 'education_base_page_end' ) ) :
function education_base_page_end() {
?>
</div><!-- #page -->
<?php
}
endif;
add_action( 'education_base_action_after', 'education_base_page_end', 10 );