Skip to content

Instantly share code, notes, and snippets.

@gareth-gillman
Created April 14, 2018 11:50
Show Gist options
  • Save gareth-gillman/2887dfaf183524b6be7a609f3a66f248 to your computer and use it in GitHub Desktop.
Save gareth-gillman/2887dfaf183524b6be7a609f3a66f248 to your computer and use it in GitHub Desktop.
Woocommerce limit product short description
function wpdocs_custom_excerpt_length( $length ) {
if( is_singular( 'product' ) ) {
return 20;
}
}
add_filter( 'excerpt_length', 'wpdocs_custom_excerpt_length', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment