-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·53 lines (38 loc) · 2.05 KB
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package ekiline
*
* Añadimos widgets en el footer para poder crear columnas
*
* https://codex.wordpress.org/Function_Reference/is_active_sidebar
*
*/
?>
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_sidebar('right'); ?>
</div><!-- #content -->
</div><!-- #page -->
<footer id="colophon" class="site-footer py-2" role="contentinfo">
<!--widgets-->
<div class="container">
<div class="row"><?php dynamic_sidebar( 'footer-w1' ); ?></div>
<div class="site-info text-center clearfix">
<?php printf( esc_html__( '© Copyright %1$s', 'ekiline' ), esc_attr( date('Y') . ' ' . get_bloginfo( 'name', 'display' )) );?> <a class="goTop btn btn-secondary btn-sm float-right" href="#top"><span class="fa fa-chevron-up"></span></a>
<br/>
<!--small class="float-left"><?php printf( esc_html__( 'Proudly powered by %s', 'ekiline' ), '<a href="https://wordpress.org/">WordPress</a>' ); ?> <?php printf( esc_html__( 'and %s', 'ekiline' ), '<a href="'.__('http://ekiline.com','ekiline').'" target="_blank">Ekiline</a>' ); ?></small-->
<small class="tooltip-default float-left my-2 d-inline-block" tabindex="0" data-toggle="tooltip" data-html="true" title="<small><?php printf( esc_html__( 'Proudly powered by %s', 'ekiline' ), '<a href=\'https://wordpress.org/\'>WordPress</a>' ); ?> <?php printf( esc_html__( 'and %s', 'ekiline' ), '<a href=\''.__('http://ekiline.com','ekiline').'\' >Ekiline</a>' ); ?></small>">
<img src="<?php echo get_template_directory_uri() . '/img/ico-ekiline.png' ?>" style="pointer-events: none;" />
</small>
</div><!-- .site-info -->
</div>
</footer><!-- #colophon -->
<?php wp_footer(); ?>
</body>
</html>