wp_parse_id_list() WordPress Function

The wp_parse_id_list() function is used to parse a string of ids into an array. The ids can be separated by either a comma or a space.

wp_parse_id_list( array|string $list ) #

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


Parameters

$list

(array|string)(Required)List of IDs.


Top ↑

Return

(int[]) Sanitized array of IDs.


Top ↑

Source

File: wp-includes/functions.php

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

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


Top ↑

Changelog

Changelog
VersionDescription
5.1.0Refactored to use wp_parse_list().
3.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More