darktheme
I want to hide the publication date of the posts. What is the best way to do this? Remove <?php echo $page->date(); ?> from home.php and page.php or should I hide them in another way? Suggest the best way to hide the publication date on posts and on index.
- SpegalDev
- Sr. Bludit
- Posts: 39
- Joined: Tue Jun 13, 2023 11:27 pm
- Location: Michigan, USA
- Has thanked: 6 times
- Been thanked: 31 times
- Contact:
Yep. Alternatively, you could leave the code there, just comment it out so it isn't shown. That way you can enable it again in the future if you wish.
Code: Select all
<?php //echo $page->date(); ?>
