From 0fab781b1cc6045951e5135ec3099ceca33ee61b Mon Sep 17 00:00:00 2001 From: Stef Kariotidis Date: Mon, 21 Nov 2016 19:14:49 +0200 Subject: [PATCH] revert escaping variables --- inc/template-tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/template-tags.php b/inc/template-tags.php index dda6baa..514242a 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -35,7 +35,7 @@ if ( ! function_exists( 'understrap_posted_on' ) ) : '' . esc_html( get_the_author() ) . '' ); - echo '' . esc_html( $posted_on ) . ' ' . esc_html( $byline ) . ''; + echo '' . $posted_on . ' ' . $byline . ''; } endif;