-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
59 lines (46 loc) · 2.31 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
54
55
56
57
58
59
<?php
/**
* @package WordPress
* @subpackage Cherry
*/
?>
<div id="footer">
<!--
<?php /* If this is a single post page or page */ if ( is_single() || is_page() ) { ?>
<p class="inline">Location : <?php wp_title(''); ?><?php if(wp_title(' ', false)) { echo ' | '; } ?><?php bloginfo('name'); ?></p>
<?php } else { ?>
<p class="inline">Location : </p>
<h1><?php wp_title(''); ?><?php if(wp_title(' ', false)) { echo ' | '; } ?><?php bloginfo('name'); ?></h1>
<?php } ?>
-->
<!-- Custom footer for JoyceTipping.com blogs. Replace with generic footer below for your blog. -->
<p>
<a href='http://joycetipping.com/'>joycetipping.com</a> is provided under the <a title='License' href='http://creativecommons.org/licenses/by-sa/3.0/'>Creative Commons Attribution-ShareAlike</a> license.
<!--
<a href="http://validator.w3.org/check?uri=referer" title="Validate the XHTML of this page.">XHTML</a>,
<a href="http://jigsaw.w3.org/css-validator/check/referer" title="Validate the CSS of this page.">CSS</a>.
-->
</p>
<p>
Powered by <a href="http://wordpress.org/">WordPress</a> <?php bloginfo('version'); ?> |
<a href='http://github.com/joycetipping/cherry'>Cherry</a> is a custom theme by <a href='http://joycetipping.com/'>Joyce Tipping</a>.
</p>
<p><a href="<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a> and <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a>.</p>
<!-- End custom footer -->
<!-- Generic footer.
<p>
© <?php echo date('Y'); ?> <a href="<?php echo bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a>. All rights reserved.
<a href="http://validator.w3.org/check?uri=referer" title="Validate the XHTML of this page.">XHTML</a>,
<a href="http://jigsaw.w3.org/css-validator/check/referer" title="Validate the CSS of this page.">CSS</a>.
</p>
<p>
Powered by <a href="http://wordpress.org/">WordPress</a> <?php bloginfo('version'); ?> |
<a href='http://github.com/joycetipping/cherry'>Cherry</a> is a custom theme by <a href='http://joycetipping.com/'>Joyce Tipping</a>.
</p>
<p><a href="<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a> and <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a>.</p>
-->
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>