Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_save_sidebar

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
197
198           /**
199            * Fires after a sidebar is updated via the REST API.
200            *
201            * @since 5.8.0
202            *
203            * @param array           $sidebar The updated sidebar.
204            * @param WP_REST_Request $request Request object.
205            */
206           do_action( 'rest_save_sidebar', $sidebar, $request );
207
208           return $this->prepare_item_for_response( $sidebar, $request );
209      }
210
211      /**
212       * Checks if the user has permissions to make the request.
213       *
214       * @since 5.8.0
215       *