wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_list_filter › WordPress Function

Depuis3.1.0
Dépréciéen/a
wp_list_filter ( $input_list, $args = array(), $operator = 'AND' )
Paramètres: (3)
  • (array) $input_list An array of objects to filter.
    Requis: Oui
  • (array) $args Optional. An array of key => value arguments to match against each object. Default empty array.
    Requis: Non
    Défaut: array()
  • (string) $operator Optional. The logical operation to perform. 'AND' means all elements from the array must match. 'OR' means only one element needs to match. 'NOT' means no elements may match. Default 'AND'.
    Requis: Non
    Défaut: 'AND'
Retourne:
  • (array) Array of found values.
Défini(e) dans:
Codex:
Changelog:
  • 4.7.0
  • 5.9.0

Filters a list of objects, based on a set of key => value arguments.

Retrieves the objects from the list that match the given arguments. Key represents property name, and value represents property value. If an object has more properties than those specified in arguments, that will not disqualify it. When using the 'AND' operator, any missing properties will disqualify it. If you want to retrieve a particular field from all matching objects, use wp_filter_object_list() instead.


Source

function wp_list_filter( $input_list, $args = array(), $operator = 'AND' ) {
	return wp_filter_object_list( $input_list, $args, $operator );
}