diff --git a/view/frontend/templates/post/info/author.phtml b/view/frontend/templates/post/info/author.phtml
index 3bc45621..0ad5819d 100644
--- a/view/frontend/templates/post/info/author.phtml
+++ b/view/frontend/templates/post/info/author.phtml
@@ -36,17 +36,21 @@ $modifierName = $modifier !== null ? $modifier->getName() : '';
showAuthorInfo()) : ?>
|
- = $escaper->escapeHtml(__(
- 'By: %1',
- '' . $authorName . ''
- )) ?>
+ = /* @noEscape */ __(
+ 'By: %2',
+ $escaper->escapeUrl($author->getUrl()),
+ $authorName
+ ) ?>
+
|
- = $escaper->escapeHtml(__(
- 'Modify By: %1 at %2',
- '' . $modifierName . '',
- $block->getDateFormat($_post->getUpdatedAt())
- )) ?>
+ = /* @noEscape */ __(
+ 'Modify By: %2 at %3',
+ $escaper->escapeUrl($modifier->getUrl()),
+ $modifierName,
+ $block->getDateFormat($_post->getUpdatedAt())
+ ) ?>
+
diff --git a/view/frontend/templates/post/info/tag.phtml b/view/frontend/templates/post/info/tag.phtml
index f781a10c..80e90824 100644
--- a/view/frontend/templates/post/info/tag.phtml
+++ b/view/frontend/templates/post/info/tag.phtml
@@ -29,5 +29,5 @@ use Magento\Framework\Escaper;
$_post = $block->getPost();
?>
getTagList($_post)) : ?>
- | = $escaper->escapeHtml(__('Tags: %1', $tagList)); ?>
+ | = $escaper->escapeHtml(__('Tags: ')) ?>= /* @noEscape */ $tagList ?>