157 | | $excerpt = wp_trim_words( $excerpt, 15 ); |
| 157 | /* |
| 158 | * translators: If your word count is based on single characters (e.g. East Asian characters), |
| 159 | * enter 'characters_excluding_spaces' or 'characters_including_spaces'. Otherwise, enter 'words'. |
| 160 | * Do not translate into your own language. |
| 161 | */ |
| 162 | if ( strpos( _x( 'words', 'Word count type. Do not translate!', 'wporg-plugins' ), 'characters' ) === 0 ) { |
| 163 | // Use the default limit of 55 characters for East Asian locales. |
| 164 | $excerpt = wp_trim_words( $excerpt ); |
| 165 | } else { |
| 166 | // Limit the excerpt to 15 words for other locales. |
| 167 | $excerpt = wp_trim_words( $excerpt, 15 ); |
| 168 | } |