acf_maybe_idval()ACF 5.7.14

acf_maybe_idval

Checks value for potential id value.

No Hooks.

Returns

Mixed.

Usage

acf_maybe_idval( $value );
$value(mixed) (required)
A value to parse.

Changelog

Since 5.7.14 Introduced.

acf_maybe_idval() code ACF 6.8.8

function acf_maybe_idval( $value ) {
	if ( $id = acf_idval( $value ) ) {
		return $id;
	}
	return $value;
}