diff --git wp-content/themes/twentyfourteen/inc/widgets.php wp-content/themes/twentyfourteen/inc/widgets.php
index 61c1160..1ef284f 100644
|
|
|
class Twenty_Fourteen_Ephemera_Widget extends WP_Widget {
|
| 47 | 47 | * @param array $instance An array of settings for this widget instance. |
| 48 | 48 | */ |
| 49 | 49 | public function widget( $args, $instance ) { |
| 50 | | $format = $instance['format']; |
| | 50 | |
| | 51 | if ( array_key_exists( 'format', $instance ) ) : |
| | 52 | $format = $instance['format']; |
| | 53 | else : |
| | 54 | $format = 'aside'; |
| | 55 | endif; |
| 51 | 56 | |
| 52 | 57 | switch ( $format ) { |
| 53 | 58 | case 'image': |