revert escaping variables

This commit is contained in:
Stef Kariotidis 2016-11-21 19:14:49 +02:00
parent 74b1de1722
commit 0fab781b1c
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ if ( ! function_exists( 'understrap_posted_on' ) ) :
'<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>'
);
echo '<span class="posted-on">' . esc_html( $posted_on ) . '</span><span class="byline"> ' . esc_html( $byline ) . '</span>';
echo '<span class="posted-on">' . $posted_on . '</span><span class="byline"> ' . $byline . '</span>';
}
endif;