| Server IP : 217.160.0.15 / Your IP : 216.73.216.30 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u37981780 ( 1696858) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/43/d124547881/htdocs/app395378437/wp-content/themes/sonar/ |
Upload File : |
<?php
/**
* The template for displaying the footer.
*
*
*Calls sidebar-footer.php for bottom widgets.
*/
global $sonar_options;
$sonar_options = get_option('sonar_theme_options');
?>
<section id="colophon">
<?php
/* A sidebar in the footer? Yep. You can can customize
* your footer with Three columns of widgets.
*/
get_sidebar( 'footer' );
$date = getdate();
$year = $date['year'];
?>
<div id="footer-html">
<?php if ( isset($sonar_options['sonar_footer_opts']) && ($sonar_options['sonar_footer_opts']!="") ){ ?>
<?php echo(stripslashes ($sonar_options['sonar_footer_opts']));?>
<?php } ?>
</div><!-- #footer-html -->
<?php if ( isset($sonar_options['sonar_add_custom_copyright']) && ($sonar_options['sonar_add_custom_copyright']!="") ) { ?>
<div id="site-info">
<?php echo(stripslashes ($sonar_options['sonar_add_custom_copyright']));?>
</div>
<?php } else { ?>
<div id="site-info">© <?php echo("$year"); ?>
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<?php bloginfo( 'name' ); ?>
</a>
</div><!-- #site-info -->
<?php } ?>
<div id="site-generator">
<?php do_action( 'sonar_credits' ); ?>
<a href="<?php echo esc_url( __( 'http://wp-ultra.com/', 'sonar' ) ); ?>" title="<?php esc_attr_e( 'Sonar Theme ', 'sonar' ); ?>" rel="generator"><?php printf( __( 'Sonar Theme', 'sonar' )); ?></a>
</div><!-- #site-generator -->
</section><!-- #colophon -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
</body>
</html>