}, 999); /** * ── FIX OG IMAGE: paksa pakai featured image ── * SEOPress pakai default og:image bukan featured image artikel. * Filter ini override output SEOPress dengan featured image. */ add_filter('seopress_social_og_thumb', function($thumb) { if (!is_singular('post')) return $thumb; $post_id = get_queried_object_id(); if (!$post_id) return $thumb; if (has_post_thumbnail($post_id)) { $img_url = get_the_post_thumbnail_url($post_id, 'full'); if ($img_url) { // Build proper OG image tag dengan featured image return "\n" . '' . "\n" . '' . "\n" . '' . "\n" . '' . "\n" . '' . "\n" . '' . "\n"; } } return $thumb; }, 999);