'shapely-recent-posts col-sm-12 text-center', 'description' => esc_html__("Widget to show recent posts with thumbnails", 'shapely'));
parent::__construct('shapely_recent_posts', esc_html__('[Shapely] Recent Posts', 'shapely'), $widget_ops);
}
function widget($args, $instance) {
extract($args);
$title = isset($instance['title']) ? $instance['title'] : esc_html__('recent Posts', 'shapely');
$limit = isset($instance['limit']) ? $instance['limit'] : 5;
echo $before_widget;
?>