diff options
Diffstat (limited to 'exampleSite/content/posts/post-with-featured-image.md')
| -rw-r--r-- | exampleSite/content/posts/post-with-featured-image.md | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/exampleSite/content/posts/post-with-featured-image.md b/exampleSite/content/posts/post-with-featured-image.md index cde54fb..c42ff5c 100644 --- a/exampleSite/content/posts/post-with-featured-image.md +++ b/exampleSite/content/posts/post-with-featured-image.md @@ -2,7 +2,8 @@ title: "Post With Featured Image" date: 2018-10-01T16:15:09+08:00 draft: false -featuredImg: "https://picsum.photos/1024/768/?random" +images: + - https://picsum.photos/1024/768/?random tags: - Demo - Image @@ -13,5 +14,10 @@ Just define the image URL in the content’s front matter, the featured image wi For example: ```yaml -featuredImg: "https://picsum.photos/1024/768/?random" -```
\ No newline at end of file +--- +images: + - https://picsum.photos/1024/768/?random +--- +``` + +This is an array, you can set multiple urls, only the first url will be used. These images is also used in [Twitter Cards](https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started.html) and the [Open Graph](http://ogp.me/) metadata. |
