Add team gallery shortcode to editor button with sorting option
This commit is contained in:
@@ -96,6 +96,17 @@ function sp_sort_random() {
|
||||
return mt_rand( 0, 1 );
|
||||
}
|
||||
|
||||
/**
|
||||
* Sort array by name field.
|
||||
*
|
||||
* @access public
|
||||
* @param array $array
|
||||
* @return bool
|
||||
*/
|
||||
function sp_sort_by_name( $a, $b ) {
|
||||
return strcmp( $a['name'], $b['name'] );
|
||||
}
|
||||
|
||||
/**
|
||||
* let_to_num function.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user