• Resolved izhetta

    (@izhetta)


    I have create a custom template page.
    I want to show some data there.
    How to show Relase Date in this page?

Viewing 1 replies (of 1 total)
  • Plugin Author Istiaq Nirab

    (@ok9xnirab)

    To get the release date of your product.

    
    $release_date = get_post_meta($product_id, "_preorder_product_release_date", true);
    
    

    You need to format this date before display

    
    $formatted_rels_date = date('F d, Y', strtotime($release_date));
    
    • This reply was modified 2 years, 5 months ago by Istiaq Nirab.
Viewing 1 replies (of 1 total)
  • The topic ‘Show Relase Date in custome template page’ is closed to new replies.