Capitalize the product title in WooCommerce

Capitalize the product title in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'the_title', 'wc_capitalize_single_prod_title', 9999, 2 );
 
function wc_capitalize_single_prod_title( $post_title, $post_id ) {
   if ( ! is_admin() && 'product' === get_post_type( $post_id ) ) {
      $post_title = ucwords( strtolower( $post_title ) );
   }
   return $post_title;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.