diff --git a/wp-content/mu-plugins/acrib-core.php b/wp-content/mu-plugins/acrib-core.php index 762cbf0..9402bfe 100644 --- a/wp-content/mu-plugins/acrib-core.php +++ b/wp-content/mu-plugins/acrib-core.php @@ -66,3 +66,19 @@ remove_filter('wp_mail', 'wp_staticize_emoji_for_email'); if (!defined('WP_POST_REVISIONS')) { define('WP_POST_REVISIONS', 3); } + +// --- Homepage: inject critical CSS to hide Kadence blank title section --- +// This overrides what's also in Additional CSS so it's version-controlled here. +add_action('wp_head', function () { + if (!is_front_page()) return; + echo '' . "\n"; +}, 5);