wp_parse_id_list( array|string $input_list ): int[]

Cleans up an array, comma- or space-separated list of IDs.


Parameters

$input_list array|string Required
List of IDs.

Top ↑

Return

int[] Sanitized array of IDs.


Top ↑

Source

File: wp-includes/functions.php. View all references

function wp_parse_id_list( $input_list ) {
	$input_list = wp_parse_list( $input_list );

	return array_unique( array_map( 'absint', $input_list ) );
}


Top ↑

Changelog

Changelog
Version Description
5.1.0 Refactored to use wp_parse_list() .
3.0.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.