acf_get_full_version()
acf_get_full_version
This function will remove any '-beta1' or '-RC1' strings from a version
Хуков нет.
Возвращает
(Строку)
.
Использование
acf_get_full_version( $version );
- $version **
- -
По умолчанию: '1'
Список изменений
С версии 5.5.0 | Введена. |
Код acf_get_full_version() acf get full version ACF 6.0.4
function acf_get_full_version( $version = '1' ) { // remove '-beta1' or '-RC1' if ( $pos = strpos( $version, '-' ) ) { $version = substr( $version, 0, $pos ); } // return return $version; }