Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Created June 23, 2020 09:50
Show Gist options
  • Select an option

  • Save farookibrahim/b9797e737de3b21d6c1e4e5df34ede54 to your computer and use it in GitHub Desktop.

Select an option

Save farookibrahim/b9797e737de3b21d6c1e4e5df34ede54 to your computer and use it in GitHub Desktop.
Cartzilla - Single Product Custom "Released" Date
if( ! function_exists( 'cartzilla_wc_product_publish_date' ) ) {
function cartzilla_wc_product_publish_date() {
global $product;
$released_date = get_post_meta( $product->get_id(), 'released_date', true );
?>
<li class="d-flex justify-content-between mb-3 pb-3 border-bottom">
<span class="text-dark font-weight-medium"><?php echo esc_html('Released', 'cartzilla'); ?></span>
<span class="text-muted"><?php echo date( 'F j, Y', strtotime( $released_date ) ); ?></span></li><?php
}
}
@farookibrahim
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment