text_fields = array('em-categorised-posts-title', 'em-categorised-posts-subtitle'); $this->select_fields = array('em-select-first-category', 'em-select-second-category'); $widget_ops = array( 'classname' => 'elegant_magazine_double_col_double_categorised_posts', 'description' => __('Displays posts from selected double categories in double column.', 'elegant-magazine'), 'customize_selective_refresh' => true, ); parent::__construct('elegant_magazine_double_col_double_categorised_posts', __('EM Double Categories Posts ', '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'] : ''; $category1 = isset($instance['em-select-first-category']) ? $instance['em-select-first-category'] : 0; $category2 = isset($instance['em-select-second-category']) ? $instance['em-select-second-category'] : 0; $number_of_posts = 5; // 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; if ($post_count < 1): ?>
ID); ?>

<?php the_title_attribute(); ?>

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; if ($post_count < 1): ?>
ID); ?>

<?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', 'Double Coulmn Double Categories Posts'); echo parent::em_generate_text_input('em-categorised-posts-subtitle', 'Subtitle', 'Double Coulmn Double Categories Posts Subtitle'); echo parent::em_generate_select_options('em-select-first-category', __('Select first category', 'elegant-magazine'), $categories); echo parent::em_generate_select_options('em-select-second-category', __('Select second category', 'elegant-magazine'), $categories); } //print_pre($terms); } } endif;