acf_punctify() ACF 5.8.2
Returns a string with correct full stop puctuation.
Хуков нет.
Возвращает
Строку.
Использование
acf_punctify( $str );
- $str(строка)
- The string to format.
По умолчанию: ''
Список изменений
С версии 5.8.2 | Введена. |
Код acf_punctify() acf punctify ACF 5.9.1
function acf_punctify( $str = '' ) {
return trim($str, '.') . '.';
}