Add random sorting to player gallery widget

This commit is contained in:
Brian Miyaji
2015-06-21 00:29:43 +10:00
parent 22b263f527
commit f03b72167d
3 changed files with 16 additions and 0 deletions

View File

@@ -85,6 +85,17 @@ function sp_filter_non_empty( $var = '' ) {
return strlen( $var ) > 0;
}
/**
* Sort array randomly and maintain index association.
*
* @access public
* @param array $array
* @return bool
*/
function sp_sort_random() {
return rand() > rand();
}
/**
* let_to_num function.
*