2014-07-31 15:37:41 +02:00
---
2016-03-25 19:19:12 +01:00
title: "Layout: Author Override"
2016-03-07 04:32:01 +01:00
author: Billy Rick
2014-07-31 15:37:41 +02:00
excerpt: "A post to test author overrides using a data file."
---
2016-03-07 15:51:50 +01:00
2014-08-08 21:45:24 +02:00
For those of you who may have content written by multiple authors on your site you can now assign different authors to each post if desired.
2014-07-31 15:37:41 +02:00
2014-08-08 21:45:24 +02:00
Previously the theme used a global author for the entire site and those attributes would be used in all bylines, social networking links, Twitter Card attribution, and Google Authorship. These `owner` variables were defined in `config.yml`
2014-07-31 15:37:41 +02:00
2014-08-08 21:45:24 +02:00
Start by modifying or creating a new `authors.yml` file in the `_data` folder and add your authors using the following format.
2014-07-31 15:37:41 +02:00
{% highlight yaml %}
2016-02-24 22:12:21 +01:00
# /_data/authors.yml
2014-07-31 15:37:41 +02:00
2016-03-07 04:32:01 +01:00
Billy Rick:
2014-07-31 15:37:41 +02:00
name: Billy Rick
2016-03-07 04:32:01 +01:00
uri: http://thewhip.com
2014-07-31 15:37:41 +02:00
email: billy@rick.com
bio: "What do you want, jewels? I am a very extravagant man."
2014-08-08 21:45:24 +02:00
avatar: bio-photo-2.jpg
2014-07-31 15:37:41 +02:00
twitter: extravagantman
2016-03-07 04:32:01 +01:00
Cornelius Fiddlebone:
2014-07-31 15:37:41 +02:00
name: Cornelius Fiddlebone
email: cornelius@thewhip.com
bio: "I ordered what?"
avatar: bio-photo.jpg
twitter: rhymeswithsackit
{% endhighlight %}
2014-08-08 21:45:24 +02:00
To assign Billy Rick as an author for our post. You'd add the following YAML front matter to a post:
2014-07-31 15:37:41 +02:00
{% highlight yaml %}
2016-03-07 04:32:01 +01:00
author: Billy Rick
2015-04-17 12:43:36 +02:00
{% endhighlight %}