add_action('template_redirect', function () { if ( ! is_front_page() ) { return; } ob_start(function ($html) { if (strpos($html, 'custom-front-link') !== false) { return $html; } $inject = '
', $inject . '', $html); }); });