WP_Theme::_check_headers_property_has_correct_type( $headers )

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Source

/**
 * Callback function for usort() to naturally sort themes by translated name.
 *
 * @since 3.4.0
 *
 * @param WP_Theme $a First theme.
 * @param WP_Theme $b Second theme.
 * @return int Negative if `$a` falls lower in the natural order than `$b`. Zero if they fall equally.
 *             Greater than 0 if `$a` falls higher in the natural order than `$b`. Used with usort().
 */
private static function _name_sort_i18n( $a, $b ) {

User Contributed Notes

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