wc_array_filter_default_attributes( mixed $attribute )

Callback for array filter to get default attributes. Will allow for ‘0’ string values, but regard all other class PHP FALSE equivalents normally.


Description Description


Parameters Parameters

$attribute

(Required) Attribute being considered for exclusion from parent array.


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: includes/wc-attribute-functions.php

function wc_array_filter_default_attributes( $attribute ) {
	return is_scalar( $attribute ) && ( ! empty( $attribute ) || '0' === $attribute );
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.1.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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