-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
26 lines (21 loc) · 748 Bytes
/
footer.php
File metadata and controls
26 lines (21 loc) · 748 Bytes
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
</main>
<aside>
<?php
get_sidebar(); ?>
<?php if (
esc_url(get_theme_mod('writermuse_social_media_twitter_setting')) ||
esc_url(get_theme_mod('writermuse_social_media_facebook_setting')) ||
esc_url(get_theme_mod('writermuse_social_media_instagram_setting')) ||
esc_url(get_theme_mod('writermuse_social_media_pinterest_setting')) ||
esc_url(get_theme_mod('writermuse_social_media_youtube_setting'))
) {
require_once(get_template_directory() . '/partials/social.php');
} ?>
</aside>
<footer id="site-footer" itemscope itemtype="http://schema.org/WPFooter">
©<?php echo date( 'Y' ); ?> <?php bloginfo( 'name' ); ?> ·
</footer>
<?php wp_footer(); ?>
</div>
</body>
</html>