__('Displays an embeddable video', 'adaptive-framework')) ); } public function form($instance) { $defaults = array( 'title' => __('Video', 'adaptive-framework'), 'video_embed' => '', 'video_description' => 'An example video' ); $instance = wp_parse_args((array) $instance, $defaults); ?>

'; if ($video_embed) { echo $video_embed; } if ($video_description) { echo '

' . $video_description . '

'; } echo ''; echo $after_widget; } } register_widget('Adaptive_Video_Widget'); ?>