-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
41 lines (34 loc) · 1.07 KB
/
Copy pathfooter.php
File metadata and controls
41 lines (34 loc) · 1.07 KB
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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "site-content" div and all content after.
*
* @package WordPress
* @subpackage Twenty_Fifteen
* @since Twenty Fifteen 1.0
*/
?>
</div><!-- .site-content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<?php
/**
* Fires before the Twenty Fifteen footer text for footer customization.
*
* @since Twenty Fifteen 1.0
*/
do_action( 'twentyfifteen_credits' );
?>
<?php _e('©', 'twentyfifteen'); ?> <?php _e(date('Y'), 'twentyfifteen'); ?> <a href="<?php echo home_url('/'); ?>" title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>">Stowarzyszenie "Nasz czysty i zdrowy Rzeszów".</a>
</div><!-- .site-info -->
<?php if (is_active_sidebar('site-keywords')) : ?>
<div class="widget-area" role="complementary">
<?php dynamic_sidebar('site-keywords'); ?>
</div> <!-- .widget-area -->
<?php endif; ?>
</footer><!-- .site-footer -->
</div><!-- .site -->
<?php wp_footer(); ?>
</body>
</html>