预计阅读时间: 2 分钟


add_action( 'woocommerce_single_product_summary','bloomer_echo_product_date',25 );
 
function bloomer_echo_product_date() {
if ( is_product() ) {
echo the_date('', '<span class="date_published">Published on: ', '</span>', false);
}
}
 
// Change the date format: https://codex.wordpress.org/Function_Reference/the_date
此文章对你有帮助吗? 已有 0 人说这篇文章是有用的。