How do I put a header image in a post?
Marco Suárez

Marco Suárez @marksasp95

Joined:
Oct 21, 2017

How do I put a header image in a post?

Publish Date: Jan 3 '18
11 3

Comments 3 total

  • Mac Siri
    Mac SiriJan 3, 2018

    By adding cover_image into the front matter. Click on "Help" to the left of "Markdown" on top when you are writing a post for more info.

    • Christian Vasquez
      Christian VasquezJan 4, 2018

      In case @maestromac's answer is not clear enough, the top of your post would look like this at the beginning:

      ---
      title: ""
      published: false
      description: ""
      tags: 
      ---
      
      Enter fullscreen mode Exit fullscreen mode

      And to add the cover_image, you will have to do it manually:

      ---
      title: 
      published: false
      description: 
      tags: 
      cover_image: <IMAGE-URL>
      ---
      
      Enter fullscreen mode Exit fullscreen mode

      And that image URL should be ending on a image file extension like .jpg or .png.

      • Nick Raphael
        Nick RaphaelNov 11, 2019

        How do I get my editor to look like that?

Add comment