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