Advertisement
Myddna

Wordpress - Imagen destacada en RSS II

Oct 12th, 2015
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. /**
  4.  * Añade la imagen destacada al RSS
  5.  * Este tema no necesita esta feature, ya que al no incluir en la pagina
  6.  * de post la featured image la he de poner a mano
  7.  */
  8. function imagenDestacadaEnRSS($content) {
  9.   global $post;
  10.   if ( has_post_thumbnail( $post->ID ) ){
  11.     $content = get_the_post_thumbnail( $post->ID, 'thumbnail',
  12.         array( 'style' => 'float: left; margin-right: 15px; margin-bottom: 15px;' ) ) . $content;
  13.   }
  14.   return $content;
  15. }
  16.  
  17. add_filter('the_excerpt_rss', 'imagenDestacadaEnRSS');
  18. add_filter('the_content_feed', 'imagenDestacadaEnRSS');
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement