__('Display posts as grid layout.', 'addon-so-widgets-bundle'), 'panels_icon' => 'dashicons dashicons-welcome-write-blog', 'panels_groups' => array('addonso') ), array( ), array( 'widget_title' => array( 'type' => 'text', 'label' => __('Widget Title', 'addon-so-widgets-bundle'), 'default' => '' ), 'posts' => array( 'type' => 'posts', 'label' => __('Select Posts', 'addon-so-widgets-bundle'), ), 'layout' => array( 'type' => 'radio', 'label' => __( 'Choose a Layout', 'addon-so-widgets-bundle' ), 'default' => 'six columns', 'options' => array( 'six columns' => __( '2 Column Layout', 'addon-so-widgets-bundle' ), 'one-third column' => __( '3 Column Layout', 'addon-so-widgets-bundle' ), 'three columns' => __( '4 Column Layout', 'addon-so-widgets-bundle' ), ) ), 'excerpt_lenght' => array( 'type' => 'number', 'label' => __( 'Excerpt length (words)', 'addon-so-widgets-bundle' ), 'default' => '10' ), 'read_more_text' => array( 'type' => 'text', 'label' => __('Read more text', 'addon-so-widgets-bundle'), 'default' => 'Read More' ), 'title_linkable' => array( 'type' => 'checkbox', 'label' => __( 'Title Linkable', 'addon-so-widgets-bundle' ), 'default' => true ), 'image_linkable' => array( 'type' => 'checkbox', 'label' => __( 'Image Linkable', 'addon-so-widgets-bundle' ), 'default' => true ), 'blog_two_styling' => array( 'type' => 'section', 'label' => __( 'Widget styling' , 'addon-so-widgets-bundle' ), 'hide' => true, 'fields' => array( 'title_color' => array( 'type' => 'color', 'label' => __( 'Title color', 'addon-so-widgets-bundle' ), 'default' => '' ), 'content_color' => array( 'type' => 'color', 'label' => __( 'Content color', 'addon-so-widgets-bundle' ), 'default' => '' ), 'meta_color' => array( 'type' => 'color', 'label' => __( 'Meta color', 'addon-so-widgets-bundle' ), 'default' => '' ), ) ), ), plugin_dir_path(__FILE__) ); } function get_template_name($instance) { return 'blog-style-two-template'; } function get_style_name($instance) { return 'blog-style-two-style'; } function get_less_variables( $instance ) { return array( 'title_color' => $instance['blog_two_styling']['title_color'], 'content_color' => $instance['blog_two_styling']['content_color'], 'meta_color' => $instance['blog_two_styling']['meta_color'], ); } } siteorigin_widget_register('blog-style-two', __FILE__, 'Blog_Style_Two');