WP_MS_Themes_List_Table::_order_callback( array $theme_a, array $theme_b )

Parameters

$theme_a

(array) (Required)

$theme_b

(array) (Required)

Return

(int)

Source

File: wp-admin/includes/class-wp-ms-themes-list-table.php

public function _order_callback( $theme_a, $theme_b ) {
		global $orderby, $order;

		$a = $theme_a[ $orderby ];
		$b = $theme_b[ $orderby ];

		if ( $a === $b ) {
			return 0;
		}

		if ( 'DESC' === $order ) {
			return ( $a < $b ) ? 1 : -1;
		} else {
			return ( $a < $b ) ? -1 : 1;
		}
	}

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_ms_themes_list_table/_order_callback