Kadis PUPR Topan Obaja Ginting
Tidak Ada Postingan Lagi.
Tidak ada lagi halaman untuk dimuat.
/* ====================================================== π₯ AI SUMMARY V10 TOPIKSERU (FIXED SAFE VERSION) ======================================================*/ function portal_ai_summary_v10($content) { if (!is_singular('post') || is_admin()) return $content; global $post; if (empty($post->post_content)) return $content; $text = wp_strip_all_tags(strip_shortcodes($post->post_content)); /* =============================== CLEAN NOISE ===============================*/ $text = preg_replace('/^\s*.*?\s[β\-]\s+/u', '', $text); $text = preg_replace('/^[A-Za-z\s\.]+,\s*[A-Za-z\s]+\s[β\-]\s+/u', '', $text); $text = preg_replace('/Topikseru\.com/iu', '', $text); $text = preg_replace('/https?:\/\/\S+/iu', '', $text); $text = preg_replace('/\s+/u', ' ', $text); $text = trim($text); /* =============================== SPLIT SENTENCE ===============================*/ $sentences = preg_split('/(?<=[.?!])\s+/u', $text); if (empty($sentences) || count($sentences) < 2) { return $content; } $sentences = array_values(array_filter(array_map('trim', $sentences))); /* =============================== FILTER DUPLIKAT ===============================*/ $seen = []; $pool = []; foreach ($sentences as $s) { if (!$s) continue; $s = preg_replace('/^[\-β’\β\β"\']+\s*/u', '', $s); $s = trim(preg_replace('/\s+/u', ' ', $s)); if (mb_strlen($s) < 50) continue; $hash = md5(mb_strtolower($s)); if (isset($seen[$hash])) continue; $seen[$hash] = true; $pool[] = $s; if (count($pool) >= 3) break; } if (empty($pool)) return $content; /* =============================== BUILD HTML ===============================*/ $html = '
Tidak Ada Postingan Lagi.
Tidak ada lagi halaman untuk dimuat.