I would like to customize the way Feedly presents my website's RSS Feed (here), which is actually very poorly displayed.
I followed their instructions adding all the suggested markups; this way I managed to have the correct title, description, icon, logo, cover image, accent color and everything else.
However, in the abovementioned guide it's said that in order to have Feedly pick the correct featured image you have to add a webfeedsFeaturedVisual classname. How can I do that with all my featured images?
Thank you in advance. Regards.
If you are looking to add a class to your featured image:
Edit the reference to call the featured image in your template:
<?php the_post_thumbnail('post-thumbnail', array( 'class' => "zoomer-class attachment-post-thumbnail")); ?>
Change zoomer-class
to your own class name.
More info here: https://wordpress.org/support/topic/featured-image-add-image-class?replies=4
Hope it helps!