dartiss / plugins-list

WordPress plugin to insert a list of the Wordpress plugins you are using into any post/page.
https://wordpress.org/plugins/plugins-list/
GNU General Public License v2.0
7 stars 6 forks source link

Add an option to output description but cleanly truncated to a specified length #41

Closed dartiss closed 1 year ago

dartiss commented 1 year ago

Discussion here... https://wordpress.org/support/topic/short-description-13/

dartiss commented 1 year ago

Can trim to specific number of words with https://developer.wordpress.org/reference/functions/wp_trim_words/

For characters, to do this cleanly, I need to...

  1. Trim to the specific number of characters
  2. If you've cut a part-word, look for the final space and remove characters after that
dartiss commented 1 year ago

Need to add a parameter so that the truncation character can be specified, defaulting to ellipsis.

dartiss commented 1 year ago

Added in #47