I haven’t seen a way to set dynamic metadata for a blogpost
What do you mean by metadata?
any {{field}}
you add will be available in the admin, it’s up to you where you want it to appear in the markup.
An example of organic groups tags:
<head>
{{#section blog_posts}}
<meta property='og:title' content='{{title}} | My Site' />
<meta property='og:description' content='{{meta_description}}' />
<meta property='og:image' content='{{meta_image type=image tag=false}}' />
{{/section}}
</head>
1 Like
Thanks that is what I needed! I feel super stupid. Haha. Anyways thanks and definitely need this.