REST API: Sort widget types by their id.

Fixes #53303.
Props spacedmonkey.


git-svn-id: https://develop.svn.wordpress.org/trunk@51882 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Timothy Jacobs
2021-10-02 21:43:26 +00:00
parent f660632c9c
commit 6194de49dc
2 changed files with 18 additions and 0 deletions
@@ -237,6 +237,8 @@ class WP_REST_Widget_Types_Controller extends WP_REST_Controller {
$widgets[ $widget['id'] ] = $widget;
}
ksort( $widgets );
return $widgets;
}