Hello, great plugin. Only issue i have is, how can i get the name of the user which wrote the blog post?
+1
Hello, @mateoprifti!
I am using the following code to get the user name:
{% set authorName = post.user.full_name %}
Hope it helps,
Denis
@rendler-denis is correct, you can access the user object of the author that created the post through post.user in Twig.
Most helpful comment
Hello, @mateoprifti!
I am using the following code to get the user name:
{% set authorName = post.user.full_name %}
Hope it helps,
Denis