Skip to content

Instantly share code, notes, and snippets.

@codersaiful
Created November 9, 2023 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codersaiful/6053bf6b2160b90144fef9748ef28e5c to your computer and use it in GitHub Desktop.
Save codersaiful/6053bf6b2160b90144fef9748ef28e5c to your computer and use it in GitHub Desktop.
<?php
add_filter('wpto_product_description', 'wpto_custom_wpto_product_description');
function wpto_custom_wpto_product_description($description){
$leter_limit = 100;
$description = strip_tags($description);
$description = substr($description,0,$leter_limit);
return $description;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment