From f771eb7503e672e4e07de956c6b427b25b74fd29 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 6 Dec 2019 07:06:49 -0600 Subject: [PATCH] add filter for site description display, fixes #14 --- header.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/header.php b/header.php index 044c097..fe96e69 100644 --- a/header.php +++ b/header.php @@ -33,7 +33,8 @@ echo '
'; $logo_tag = ( apply_filters( 'ea_h1_site_title', false ) || ( is_front_page() && is_home() ) ) ? 'h1' : 'p'; echo '<' . $logo_tag . ' class="site-title">' . get_bloginfo( 'name' ) . ''; - //echo '

' . get_bloginfo( 'description' ) . '

'; + if( apply_filters( 'ea_header_site_description', false ) ) + echo '

' . get_bloginfo( 'description' ) . '

'; echo '
'; tha_header_bottom();