I'm looking for solution to display products published date on shop page.
I tried the following code, but it show only for first product
Any help will be greatful
add_action( 'woocommerce_after_shop_loop_item', 'wc_shop_page_product_date', 100 );
function wc_shop_page_product_date() {
echo the_date('', '<span class="date_published">Published on: ', '</span>', false);
}
global $product; echo get_the_date('Y-m-d', $product->get_id());
Here is a guide on customizing the format: codex.wordpress.org/Formatting_Date_and_Time – Saqib Amin