Sei sulla pagina 1di 4

<?

php

/**

* The template for displaying the footer

* @package showme

*/

?>

<footer id="colophon" class="site-footer">

<div class="container">

<div class="site-info">

<?php

$show_social = get_theme_mod('footer_show_social', 0);

$show_menu = get_theme_mod('footer_show_menu', 0);

$social_url = array();

$social_list = array('twitter', 'facebook', 'google-plus', 'pinterest', 'vk', 'flickr', 'instagram',


'500px', 'youtube', 'vimeo', 'soundcloud', 'dribbble', 'behance', 'github', 'rss');

foreach ($social_list as $social_list_value) {

$social_url[$social_list_value] = get_theme_mod('social_'.$social_list_value);

$social_url_empty = true;

foreach ($social_url as $social_url_key => $social_url_value) {

if ($social_url_value) {

$social_url_empty = false;

break;
}

if (($show_social && !$social_url_empty) || ($show_menu && has_nav_menu('menu-2'))){

echo '<div class="site-info-nav hidden-sm hidden-xs">';

if ($show_social && !$social_url_empty) {

echo '<div class="site-info-social">';

foreach ($social_url as $social_url_key => $social_url_value) {

if ($social_url_value) {

echo '<a href="'.esc_url($social_url_value).'" target="_blank"><i class="fa


fa-'.esc_attr($social_url_key).'"></i></a>';

echo '</div>';

if ($show_menu && has_nav_menu('menu-2')) {

echo '<div class="site-info-menu">';

wp_nav_menu(array(

'theme_location' => 'menu-2',

'container' => 'nav',

'menu_class' => 'footer-menu list-unstyled clearfix'

));

echo '</div>';

echo '</div>';

}
?>

<div class="site-info-copyright <?php if (($show_social && !$social_url_empty) ||


($show_menu && has_nav_menu('menu-2'))){?>have-site-info-nav<?php }?>">

<a href="<?php echo esc_url( __( 'http://www.sisben.gov.co/Documents/Informaci


%C3%B3n/Leyes/LEY%20TRATAMIENTO%20DE%20DATOS%20-%20LEY%201581%20DE
%202012.pdf', 'showme' ) ); ?>"><?php

printf( esc_html__( 'Ley Estatutaria No. 1581 de 2012 %s', 'showme' ), '' );

?></a>

<span class="sep"> | </span>

<?php

printf( esc_html__( '%1$s %2$s.', 'showme' ), '', '<a


href="http://federacionfundepalma.org/wp-content/uploads/2018/04/Política-de-Protección-de-
Datos-Personales.pdf">Política de Protección de Datos Personales</a>' );

?>

</div>

</div><!-- .site-info -->

</div>

</footer><!-- #colophon -->

<?php

$show_back_to_top = get_theme_mod('general_show_totop_btn', 1);

if ($show_back_to_top) {

?>

<div id="back_top"><i class="fa fa-angle-up"></i></div>

<?php

}
?>

</div><!-- #page -->

<?php wp_footer(); ?>

</body>

</html>

Potrebbero piacerti anche