Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rajucs/88d734f40bb31cee4d80a1253a80d4c9 to your computer and use it in GitHub Desktop.
Save rajucs/88d734f40bb31cee4d80a1253a80d4c9 to your computer and use it in GitHub Desktop.
add_filter( 'the_title', 'shorten_woo_product_title', 10, 2 );
function shorten_woo_product_title( $title, $id ) {
if ( ! is_singular( array( 'product' ) ) && get_post_type( $id ) === 'product' ) {
return wp_trim_words( $title, 3, '...' ); // change last number to the number of words you want
} else {
return $title;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment