From 80a680cf9664269e64e149ff46f89362a74e2f40 Mon Sep 17 00:00:00 2001 From: Ross Trottier Date: Fri, 27 Sep 2024 13:13:25 -0600 Subject: [PATCH] added thumbnail support --- functions.php | 1 + style.css | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 80b5167..b497606 100644 --- a/functions.php +++ b/functions.php @@ -7,6 +7,7 @@ function slowtwitch_theme_support() { add_theme_support( 'title-tag' ); add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); + add_theme_support('post-thumbnails'); } // enqueue styles diff --git a/style.css b/style.css index 68c34b0..0924937 100644 --- a/style.css +++ b/style.css @@ -1487,4 +1487,8 @@ li:has(> .current) { /* styles to apply to the li tag */ .st-mailchimp-signup__button:hover { background-color: #FFDB12; color: #414b4c; -} \ No newline at end of file +} + +.wp-forms-hidden-name { + display: none; +}