-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfooter.php
More file actions
19 lines (19 loc) · 754 Bytes
/
Copy pathfooter.php
File metadata and controls
19 lines (19 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="clear"></div>
</div>
<div id="footer">
<span class="text">
<?php
$blog_name = '<a href="'.get_bloginfo('url').'">'.get_bloginfo('name').'</a>';
printf(__('Copyright %s %s %s · Powered by %s <br/>','lightword'),'©',date('Y'),$blog_name,'<a href="http://wordpress.org/" title="WordPress" target="_blank">WordPress</a>')
;?>
<?php _e("LightWord Theme by Andrei Luca",'lightword');?>
</em>
<?php global $lw_footer_content; echo $lw_footer_content; ?>
<a title="<?php _e('Go to top','lightword'); ?>" class="top" href="#top"><?php _e('Go to top','lightword'); ?> ↑</a>
</span>
</div>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/menu.js"></script>
</div>
<?php wp_footer(); ?>
</body>
</html>