add_action('wp_head', function () {
  if (!is_singular()) return;

  $post_id = get_queried_object_id();
  if (!$post_id) return;

  $title = get_the_title($post_id);
  $desc  = get_the_excerpt($post_id);
  if (!$desc) $desc = wp_strip_all_tags(get_the_content(null, false, $post_id));
  $desc = trim(preg_replace('/\s+/', ' ', $desc));
  $desc = mb_substr($desc, 0, 200);

  $img_id = get_post_thumbnail_id($post_id);
  if (!$img_id) return;

  $img = wp_get_attachment_image_src($img_id, 'full');
  if (!$img || empty($img[0])) return;

  $img_url = $img[0];
  $img_w   = !empty($img[1]) ? (int)$img[1] : null;
  $img_h   = !empty($img[2]) ? (int)$img[2] : null;

  // Optional: canonical URL (helps preview tools)
  $url = get_permalink($post_id);

  echo "\n<!-- Social preview fallback tags -->\n";
  echo '<meta property="og:type" content="article" />' . "\n";
  echo '<meta property="og:title" content="' . esc_attr($title) . '" />' . "\n";
  echo '<meta property="og:description" content="' . esc_attr($desc) . '" />' . "\n";
  echo '<meta property="og:url" content="' . esc_url($url) . '" />' . "\n";
  echo '<meta property="og:image" content="' . esc_url($img_url) . '" />' . "\n";
  if ($img_w && $img_h) {
    echo '<meta property="og:image:width" content="' . $img_w . '" />' . "\n";
    echo '<meta property="og:image:height" content="' . $img_h . '" />' . "\n";
  }

  // Twitter cards (often used by iMessage previews too)
  echo '<meta name="twitter:card" content="summary_large_image" />' . "\n";
  echo '<meta name="twitter:title" content="' . esc_attr($title) . '" />' . "\n";
  echo '<meta name="twitter:description" content="' . esc_attr($desc) . '" />' . "\n";
  echo '<meta name="twitter:image" content="' . esc_url($img_url) . '" />' . "\n";
}, 5);
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://gospelinlife.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://gospelinlife.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-posts-article-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-posts-book-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-posts-campaign-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-posts-devotional-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-posts-manual-paper-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-posts-series-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-posts-sermon-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-posts-study-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-taxonomies-book-of-the-bible-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-taxonomies-format-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-taxonomies-location-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-taxonomies-quarterly-category-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-taxonomies-quarter-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-taxonomies-speaker-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-taxonomies-topic-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-taxonomies-sermon_talk_type-1.xml</loc></sitemap><sitemap><loc>https://gospelinlife.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
