equal
deleted
inserted
replaced
363 |
363 |
364 $widget_args = wp_parse_args( $widget_args, array( 'number' => -1 ) ); |
364 $widget_args = wp_parse_args( $widget_args, array( 'number' => -1 ) ); |
365 $this->_set( $widget_args['number'] ); |
365 $this->_set( $widget_args['number'] ); |
366 $instances = $this->get_settings(); |
366 $instances = $this->get_settings(); |
367 |
367 |
368 if ( array_key_exists( $this->number, $instances ) ) { |
368 if ( isset( $instances[ $this->number ] ) ) { |
369 $instance = $instances[ $this->number ]; |
369 $instance = $instances[ $this->number ]; |
370 |
370 |
371 /** |
371 /** |
372 * Filters the settings for a particular widget instance. |
372 * Filters the settings for a particular widget instance. |
373 * |
373 * |