View difference between Paste ID: MKbqgh3V and 3QHPS0N4
SHOW: | | - or go back to the newest paste.
1
<?php
2
function postrss($content) {
3
    if ( is_feed() ) {
4
        $content .= "\n\n&copy; Markus Sorger 2012\n";
5
    }
6
return $content;
7
}
8-
add_filter('the_content', 'postrss');
8+
9
add_filter('the_content', 'postrss');
10
?>