forked from alliswell/min-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
29 lines (25 loc) · 828 Bytes
/
functions.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
<?php
function feedlove($content) {
$content = $content . '<p class="extra"><a href="http://lessmade.com/themes/min" title="min theme" >A minimal wordpress theme by Jared Erickson</a></p>';
return $content;
}
add_filter('the_excerpt_rss', 'feedlove');
add_filter('the_content_rss', 'feedlove');
/* ADD WIDGETS IN THE FOOTER */
if ( function_exists('register_sidebar') )
register_sidebar(array(
'name' => 'bucket left',
'before_widget' => '<div class="footer-widget">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
if ( function_exists('register_sidebar') )
register_sidebar(array(
'name' => 'bucket right',
'before_widget' => '<div class="footer-widget">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
?>