Aquí hay un código simple que le permite mostrar las imágenes destacadas de sus publicaciones en su fuente RSS...
…de esa manera, tus imágenes destacadas se mostrarán en todas tus redes sociales, como Facebook, por ejemplo.
Por favor agregue este código en su funciones.php archivo:
- Utilice este código para mostrar las imágenes destacadas:
función imagenRSS($content) {
puesto $ global;
si (has_post_thumbnail($post->ID)){
$contenido=» . get_the_post_thumbnail( $post->ID, 'miniatura', matriz( 'estilo' => 'float: derecha; margen:0 0 10px 10px;' ) ). ». contenido $;
}
devolver contenido $;
}
add_filter('the_excerpt_rss', 'imageRSS');
add_filter('the_content_feed', 'imageRSS');
- Utilice este código si tiene el Obtener la imagen complemento, para escanear las imágenes de tu publicación si no tiene una imagen destacada:
función imagenRSS($content) {
puesto $ global;
si (has_post_thumbnail($post->ID)){
$contenido=» . get_the_post_thumbnail( $post->ID, 'miniatura', matriz( 'estilo' => 'float: derecha; margen:0 0 10px 10px;' ) ). ». contenido $;
}
demás {
$contenido=» . get_the_image(array('width' => 150, 'image_scan' => true, 'image_class' => », 'meta_key' => array( 'Miniatura', 'miniatura' ))). ». contenido $;
}
devolver contenido $;
}
add_filter('the_excerpt_rss', 'imageRSS');
add_filter('the_content_feed', 'imageRSS');
función show_image_feed($content) {
puesto $ global;
$args = matriz(
'post_type' => 'adjunto',
'número de publicaciones' => 1,
'post_status' => nulo,
'post_parent' => $post->ID
);
$attachment = get_posts($args);
si (1TP4Adjunto) {
$contenido = '
'. Contenido $. '
IDENTIFICACIÓN).' »>Lea el resto.'; } devolver contenido $; } add_filter('the_excerpt_rss', 'show_image_feed');