mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
66 lines
2.4 KiB
Plaintext
66 lines
2.4 KiB
Plaintext
<?php global $SMTheme;?>
|
|
|
|
</div>
|
|
</div>
|
|
<div id='content-bottom'></div>
|
|
<?php
|
|
if ($SMTheme->get( 'social', 'showsocial')) {
|
|
$SMTheme->block_social();
|
|
}
|
|
?>
|
|
<div id='footer'>
|
|
<div class='container clearfix'>
|
|
<?php if ($SMTheme->get("layout","footerwidgets")) { ?>
|
|
<div class='footer-widgets-container'><div class='footer-widgets'>
|
|
<div class='widgetf'>
|
|
<?php if ( !function_exists("dynamic_sidebar") || !dynamic_sidebar("footer_1") ) : ?>
|
|
<?php
|
|
$SMTheme->go_func("footer_1");
|
|
?>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<div class='widgetf'>
|
|
<?php if ( !function_exists("dynamic_sidebar") || !dynamic_sidebar("footer_2") ) : ?>
|
|
<?php
|
|
$SMTheme->go_func("footer_2");
|
|
?>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<div class='widgetf widgetf_last'>
|
|
<?php if ( !function_exists("dynamic_sidebar") || !dynamic_sidebar("footer_3") ) : ?>
|
|
<?php
|
|
$SMTheme->go_func("footer_3");
|
|
?>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div></div>
|
|
<?php } ?>
|
|
|
|
</div>
|
|
<?php wp_footer(); ?>
|
|
<div class='footer_txt'><div class='container'>
|
|
<?php
|
|
if ($SMTheme->get( "layout","footertext" )) {
|
|
echo $SMTheme->get( "layout","footertext" );
|
|
} else {
|
|
?>Copyright © <?php echo date("Y"); ?> <a href="<?php echo home_url(); ?>"><?php bloginfo("name"); ?></a><?php
|
|
echo (get_bloginfo('description'))?' - '.get_bloginfo('description'):'';
|
|
}
|
|
?>
|
|
<?php /*
|
|
All links in the tag <div class='smthemes'> are attribution of the theme developers and should remain intact.
|
|
It's protected by Creative Commons License (http://creativecommons.org/licenses/by/3.0/).
|
|
Warning! Your site will not be able to work if these links are edited or deleted.
|
|
You can buy this theme without footer links online at http://smthemes.com/buy/retropress/
|
|
*/ ?>
|
|
<div class='smthemes'>Designed by <a href='http://www.1001freewpthemes.com/category/news-magazine-themes/' target='_blank'>wp news themes</a>, thanks to: <a href='http://www.1001freewpthemes.com' target='_blank'>Free WordPress Themes</a>, <a href='http://jdis.co/' target='_blank'>JDis.co</a> and <a href='http://accesoriza-v-as.com/' target='_blank'>accesorii femei</a></div>
|
|
</div></div>
|
|
</div>
|
|
<?php
|
|
echo $SMTheme->get( "integration","footercode" );
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html> |