From 6d699920bf6d66c601719ce001072da7c770e37a Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Thu, 1 Feb 2018 14:19:49 -0500 Subject: [PATCH] Remove the tags from showing in News Comment out the part where it outputs the tags. --- inc/template-tags.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/template-tags.php b/inc/template-tags.php index 79a8e39..38cd180 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -54,10 +54,10 @@ function wmta_entry_footer() { } /* translators: used between list items, there is a space after the comma */ - $tags_list = get_the_tag_list( '', esc_html__( ', ', 'wmta' ) ); - if ( $tags_list ) { - printf( '', $tags_list ); // WPCS: XSS OK. - } + // $tags_list = get_the_tag_list( '', esc_html__( ', ', 'wmta' ) ); + // if ( $tags_list ) { + // printf( '', $tags_list ); // WPCS: XSS OK. + // } } /* if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { -- 2.17.1