.image-row {
display: flex;
justify-content: center;
align-items: center;
gap: 20px; flex-wrap: nowrap;
padding: 35px;
}
.image-row figure {
margin: 0; }
.image-row img {
height: auto; width: auto; }
.archive .post-image, 
.blog .post-image,
.archive .featured-image,
.blog .featured-image {
display: block;
margin: 0 auto; text-align: center; } .rss-widget-wrapper {
max-width: 1200px; margin: 0 auto; padding: 0 60px; } function add_featured_image_to_rss_thumbnail($content) {
global $post;
if (is_feed() && has_post_thumbnail($post->ID)) {
$image = get_the_post_thumbnail_url(//hyperbaricnews.com/wp-content/themes/generatepress-child/$post->ID, full);
// Add <media:content> and <thumbnail> for better compatibility
$media_tags = '<media:content url="' . esc_url(//hyperbaricnews.com/wp-content/themes/generatepress-child/$image) . '" medium="image" />
<thumbnail>' . esc_url(//hyperbaricnews.com/wp-content/themes/generatepress-child/$image) . '</thumbnail>';
$content = $media_tags . $content;
}
return $content;
}
add_filter('the_content_feed', 'add_featured_image_to_rss_thumbnail');