added thumbnail support

This commit is contained in:
Ross Trottier 2024-09-27 13:13:25 -06:00
parent 5dbb22c930
commit 80a680cf96
2 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,7 @@ function slowtwitch_theme_support() {
add_theme_support( 'title-tag' ); add_theme_support( 'title-tag' );
add_theme_support( 'align-wide' ); add_theme_support( 'align-wide' );
add_theme_support( 'responsive-embeds' ); add_theme_support( 'responsive-embeds' );
add_theme_support('post-thumbnails');
} }
// enqueue styles // enqueue styles

View File

@ -1487,4 +1487,8 @@ li:has(> .current) { /* styles to apply to the li tag */
.st-mailchimp-signup__button:hover { .st-mailchimp-signup__button:hover {
background-color: #FFDB12; background-color: #FFDB12;
color: #414b4c; color: #414b4c;
} }
.wp-forms-hidden-name {
display: none;
}