ID); // 🔥 Zorg dat korte titels automatisch langer worden if (strlen($title) ' . esc_html($title) . '' . "\n"; } } // 💥 FORCEER dat niets anders een title mag maken add_filter('pre_get_document_title', '__return_empty_string', 999); // ❌ verwijder ALLE bestaande titles remove_action('wp_head', '_wp_render_title_tag'); remove_action('wp_head', 'et_add_title'); remove_action('wp_head', 'et_seo_title'); // ✅ jouw title wint altijd add_action('wp_head', 'force_seo_title', 0); ?>