Viewing 1 reply thread
You must be logged in to reply to this topic.
Hi,
I would like to add the post date “Month Day, Year” below the portfolio in the portfolio loop-grid.php file instead of the portfolio category. How do I do this?
Essentially I want to modify the $sort_classes to be the date in “Month Day, Year”
<h4 data-animate=”fadeInUp” class=”a1″><?php echo get_the_title() ?></h4>
<h6 data-animate=”fadeInUp” class=”a2″><?php echo <span style=”text-decoration: underline;”>$sort_classes</span> ?></h6>
Hello,
Sorry for the late reply.
Please replace this line: <h6 data-animate="fadeInUp" class="a2"><?php echo $sort_classes ?></h6>
with this one: <h6 data-animate="fadeInUp" class="a2"><?php echo get_the_date(); ?></h6>
Save file and refresh.
Best regards!
You must be logged in to reply to this topic.