WP_MS_Themes_List_Table::_order_callback() WordPress Method
The WP_MS_Themes_List_Table::_order_callback() method is used to sort the list of themes by name, author, or rating.
WP_MS_Themes_List_Table::_order_callback( array $theme_a, array $theme_b ) #
Contents
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; } }
Expand full source codeCollapse full source codeView on TracView on GitHub