Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: widget_{$this->id_base}_instance

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
242           /**
243            * Filters the media widget instance prior to rendering the media.
244            *
245            * @since 4.8.0
246            *
247            * @param array           $instance Instance data.
248            * @param array           $args     Widget args.
249            * @param WP_Widget_Media $widget   Widget object.
250            */
251           $instance = apply_filters( "widget_{$this->id_base}_instance", $instance, $args, $this );
252
253           $this->render_media( $instance );
254
255           echo $args['after_widget'];
256      }
257
258      /**
259       * Sanitizes the widget form values as they are saved.
260       *