After adding the code from shoutbox theme in functions.php I'm getting thumbnail, the problem is the size 80x80px:
Currently in Corona we have:
//change default thumbnail size on theme activation
add_action('avia_backend_theme_activation', 'avia_set_thumb_size');
function avia_set_thumb_size() {update_option( 'thumbnail_size_h', 80 ); update_option( 'thumbnail_size_w', 80 );}
from Shoutbox:
// THIS INCLUDES THE THUMBNAIL IN OUR RSS FEED
add_filter( 'the_excerpt_rss', 'inoplugs_insertThumbnailRSS' );
add_filter( 'the_content_feed', 'inoplugs_insertThumbnailRSS' );
function inoplugs_insertThumbnailRSS( $content ) {
global $post;
$slides = avia_post_meta($post->post_id, 'slideshow');
if ($slides){
$postimage = avia_image_by_id($slides[0]['slideshow_image'],'thumbnail');
$content = '<div>' . $postimage . '</div>' . $content;
return $content;
}
}
I need to show different featured image, 610x255px ('page' size) or aviaCordion image size (610x370px)














