diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9587bf67afce..33735c02bef0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,8 @@
## Unreleased version
-
- BREAKING CHANGE: Allow changing the order of the social network links that appear in the footer (#1152)
-- BREAKING CHANGE: `google-scholar` social network link no longer requires the prefix `citations?user=`; if you previously set this parameter, it needs to be updated (#1189)
-- Fixed bug where hovering over search results showed the text "{desc}" (#1156)
+- BREAKING CHANGE: `google-scholar` social network link no longer requires the prefix `citations?user=`; if you previously set this parameter, it needs to be updated (#1189)
+- Added `author` YAML parameter to allow specifying the author(s) of a post (#1220)
+- Fixed bug where hovering over search results showed the text "{desc}" (#1156)
- Added social network links for GitLab, Bluesky (#1168, #1218)
- Added instructions and example on how to fix image links in project sites (#1171)
- Pagination buttons: use nicer arrows, and don't show text on small screens (#1221)
diff --git a/README.md b/README.md
index 825a34298615..7f96ae38ba51 100644
--- a/README.md
+++ b/README.md
@@ -164,6 +164,7 @@ These are parameters that you may not use often, but can come in handy sometimes
Parameter | Description
----------- | -----------
+author | Specify the author of a blog post (useful if a website has multiple authors).
readtime | If you want a post to show how many minutes it will take to read it, use `readtime: true`.
show-avatar | If you have an avatar configured in the `_config.yml` but you want to turn it off on a specific page, use `show-avatar: false`.
social-share | By default, every blog post has buttons to share the page on social media. If you want to turn this feature off, use `social-share: false`.
diff --git a/_includes/head.html b/_includes/head.html
index ac3e13409c23..9b5f1c83aea5 100644
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -25,8 +25,15 @@
{% endif %}
{% endif %}
-
- {% if include.type == "post" %}
+
+ {% if include.type == "post" %}
+ {% if page.author %}
+ By {{ page.author | strip_html }}
+ {% endif%}
Posted on {{ page.date | date: date_format }}
{% if page.last-updated %}
@@ -71,7 +74,10 @@
{{ page.subtitle | strip_html }}
{% endif %}
{% endif %}
- {% if include.type == "post" %}
+ {% if include.type == "post" %}
+ {% if page.author %}
+ By {{ page.author | strip_html }}
+ {% endif%}
Posted on {{ page.date | date: date_format }}
{% if page.last-updated %}
diff --git a/_layouts/home.html b/_layouts/home.html
index 9e4d04fcdd04..be4c555ab9e4 100644
--- a/_layouts/home.html
+++ b/_layouts/home.html
@@ -46,6 +46,9 @@
{% endif %}
+ {% if post.author %}
+ By {{ post.author | strip_html }}
+ {% endif %}
{% assign date_format = site.date_format | default: "%B %-d, %Y" %}
Posted on {{ post.date | date: date_format }}
diff --git a/_posts/2020-02-26-flake-it-till-you-make-it.md b/_posts/2020-02-26-flake-it-till-you-make-it.md
index b3ad9e398ab7..768f6328da09 100644
--- a/_posts/2020-02-26-flake-it-till-you-make-it.md
+++ b/_posts/2020-02-26-flake-it-till-you-make-it.md
@@ -6,6 +6,7 @@ cover-img: /assets/img/path.jpg
thumbnail-img: /assets/img/thumb.png
share-img: /assets/img/path.jpg
tags: [books, test]
+author: Sharon Smith and Barry Simpson
---
Under what circumstances should we step off a path? When is it essential that we finish what we start? If I bought a bag of peanuts and had an allergic reaction, no one would fault me if I threw it out. If I ended a relationship with a woman who hit me, no one would say that I had a commitment problem. But if I walk away from a seemingly secure route because my soul has other ideas, I am a flake?
diff --git a/_posts/2020-02-28-sample-markdown.md b/_posts/2020-02-28-sample-markdown.md
index 8456c31a0ff4..d46f9ba58c60 100644
--- a/_posts/2020-02-28-sample-markdown.md
+++ b/_posts/2020-02-28-sample-markdown.md
@@ -6,6 +6,7 @@ gh-repo: daattali/beautiful-jekyll
gh-badge: [star, fork, follow]
tags: [test]
comments: true
+author: Bill Smith
---
{: .box-success}