Sorry, Guys
But if you could help me with this code, through the labels section, I want to display custom dates manually for my project.
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:
label.name startsWith "updated:"'>
<!-- Extract year, month, and day manually using conditions -->
<b:with value='data:
label.name' var='updatedLabel'>
<!-- Extract year -->
<b:if cond='data:updatedLabel.contains("-")'>
<b:with value='data:updatedLabel.substring(8, 12)' var='year'/>
</b:if>
<!-- Extract month -->
<b:if cond='data:updatedLabel.contains("-")'>
<b:with value='data:updatedLabel.substring(5, 7)' var='month'/>
</b:if>
<!-- Extract day -->
<b:if cond='data:updatedLabel.contains("-")'>
<b:with value='data:updatedLabel.substring(0, 4)' var='day'/>
</b:if>
<!-- Display formatted date -->
<b:if cond='data:month == "01"'>Last Updated: January <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "02"'>Last Updated: February <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "03"'>Last Updated: March <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "04"'>Last Updated: April <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "05"'>Last Updated: May <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "06"'>Last Updated: June <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "07"'>Last Updated: July <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "08"'>Last Updated: August <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "09"'>Last Updated: September <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "10"'>Last Updated: October <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "11"'>Last Updated: November <data:day/>, <data:year/></b:if>
<b:if cond='data:month == "12"'>Last Updated: December <data:day/>, <data:year/></b:if>
</b:with>
</b:if>
</b:loop>