text_fields = array('em-categorised-posts-title', 'em-categorised-posts-subtitle'); $this->select_fields = array('em-select-category'); $widget_ops = array( 'classname' => 'elegant_magazine_double_col_categorised_posts', 'description' => __('Displays posts from selected category in double column.', 'elegant-magazine'), 'customize_selective_refresh' => true, ); parent::__construct('elegant_magazine_double_col_categorised_posts', __('EM Posts - Double Column ', 'elegant-magazine'), $widget_ops); } /** * Front-end display of widget. * * @see WP_Widget::widget() * * @param array $args Widget arguments. * @param array $instance Saved values from database. */ public function widget($args, $instance) { $instance = parent::em_sanitize_data($instance, $instance); /** This filter is documented in wp-includes/default-widgets.php */ $title = apply_filters('widget_title', $instance['em-categorised-posts-title'], $instance, $this->id_base); $subtitle = isset($instance['em-categorised-posts-subtitle']) ? $instance['em-categorised-posts-subtitle'] : ''; $category = isset($instance['em-select-category']) ? $instance['em-select-category'] : '0'; $number_of_posts = '5'; $excerpt_length = '45'; // open the widget container echo $args['before_widget']; ?>

have_posts()) : $post_count = 0; while ($all_posts->have_posts()) : $all_posts->the_post(); if (has_post_thumbnail()) { $thumb = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'elegant-magazine-medium'); $url = $thumb['0']; } else { $url = ''; } global $post; $author_id = $post->post_author; if ($post_count < 1): ?>
ID); ?>

0) : ?>
<?php the_title_attribute(); ?>

form_instance = $instance; //print_pre($terms); $categories = elegant_magazine_get_terms(); if (isset($categories) && !empty($categories)) { // generate the text input for the title of the widget. Note that the first parameter matches text_fields array entry echo parent::em_generate_text_input('em-categorised-posts-title', __('Title', 'elegant-magazine'), __('Double Column Posts', 'elegant-magazine')); echo parent::em_generate_text_input('em-categorised-posts-subtitle', __('Subtitle', 'elegant-magazine'), __('Double Column Posts Subtitle', 'elegant-magazine' )); echo parent::em_generate_select_options('em-select-category', __('Select category', 'elegant-magazine'), $categories); } //print_pre($terms); } } endif;