Skip to content

Commit

Permalink
fixed gallery issue if image was removed from media library (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fellan-91 authored Jul 17, 2024
1 parent c1fa7e9 commit a4f6c52
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions classes/class-get-portfolio.php
Original file line number Diff line number Diff line change
Expand Up @@ -1215,10 +1215,12 @@ public static function sort_array_by_field( $array, $field, $order = 'desc' ) {
$array,
function ( $a, $b ) use ( $field, $order ) {
// Primary comparison by field values.
$comparsion = 'asc' === $order ? strcmp( $a[ $field ], $b[ $field ] ) : strcmp( $b[ $field ], $a[ $field ] );
if ( isset( $a[ $field ] ) && isset( $b[ $field ] ) ) {
$comparsion = 'asc' === $order ? strcmp( $a[ $field ], $b[ $field ] ) : strcmp( $b[ $field ], $a[ $field ] );

if ( 0 !== $comparsion ) {
return $comparsion;
if ( 0 !== $comparsion ) {
return $comparsion;
}
}

// Secondary comparison by keys when values are equal.
Expand Down

0 comments on commit a4f6c52

Please sign in to comment.