Page 1 of 1

Have Blog Post Show Date?

Posted: Sun Jun 16, 2019 10:18 am
by botto
I looked over my blog post on Bludit Pro 3.9.1 and I do not see the date anywhere. How do I get the date of the blog post to show on my entry?

Re: Have Blog Post Show Date?

Posted: Sun Jun 16, 2019 11:48 am
by arikenko
What theme you are using ?

btw. If you go to settings>advanced you can make post to sort by date instead of position

Re: Have Blog Post Show Date?

Posted: Mon Jun 17, 2019 12:04 am
by botto
I switched themes, the other default one, and the date showed up. It is odd that the first default date did not have this. It is sort of important to reveal date in a blog post.

Re: Have Blog Post Show Date?

Posted: Mon Jun 17, 2019 12:44 pm
by Jay
Try to find occurrence of

Code: Select all

$page->date()
in the theme you are using.
You can show the page creation date with below snippet.

Code: Select all

<?php echo $page->date() ?>
Just add it to theme's page.php file in the place you want to show it.