Advertisement
Myddna

Wordpress - Imagen destacada en RSS

Oct 12th, 2015
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  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 = '<div>' . get_the_post_thumbnail( $post->ID, 'large', array( 'style' => 'float:none; text-align: center; margin-bottom: 15px;' ) ) . '</div>' . $content;
  12.   }
  13.   return $content;
  14. }
  15.  
  16. add_filter('the_excerpt_rss', 'imagenDestacadaEnRSS');
  17. add_filter('the_content_feed', 'imagenDestacadaEnRSS');
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement