Advertisement
Guest User

Untitled

a guest
Nov 30th, 2013
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function addImagetoRSS($content) {
  2. global $post;
  3.  
  4. if ( has_post_thumbnail( $post->ID ) ){
  5. $content = '' . get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'style' => 'float:left; margin: 0 15px 10px 0;' ) ) . '' . $content;
  6. }
  7. return $content;
  8. }
  9.  
  10. add_filter('the_excerpt_rss', 'addImagetoRSS');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement