'anderson_category_posts_horizontal', 'description' => esc_html__( 'Displays your posts from a selected category in a horizontal arrangement. Please use this widget ONLY in the Magazine Homepage widget area.', 'anderson-lite' ), 'customize_selective_refresh' => true, ); parent::__construct('anderson_category_posts_horizontal', sprintf( esc_html__( 'Category Posts: Horizontal (%s)', 'anderson-lite' ), 'Anderson' ), $widget_ops); // Delete Widget Cache on certain actions add_action( 'save_post', array( $this, 'delete_widget_cache' ) ); add_action( 'deleted_post', array( $this, 'delete_widget_cache' ) ); add_action( 'switch_theme', array( $this, 'delete_widget_cache' ) ); } public function delete_widget_cache() { wp_cache_delete('widget_anderson_category_posts_horizontal', 'widget'); } private function default_settings() { $defaults = array( 'title' => '', 'category' => 0, 'category_link' => false ); return $defaults; } // Display Widget function widget( $args, $instance ) { $cache = array(); // Get Widget Object Cache if ( ! $this->is_preview() ) { $cache = wp_cache_get( 'widget_anderson_category_posts_horizontal', 'widget' ); } if ( ! is_array( $cache ) ) { $cache = array(); } // Display Widget from Cache if exists if ( isset( $cache[ $this->id ] ) ) { echo $cache[ $this->id ]; return; } // Start Output Buffering ob_start(); // Get Widget Settings $settings = wp_parse_args( $instance, $this->default_settings() ); // Output echo $args['before_widget']; ?>
is_preview() ) { $cache[ $this->id ] = ob_get_flush(); wp_cache_set( 'widget_anderson_category_posts_horizontal', $cache, 'widget' ); } else { ob_end_flush(); } } // Render Widget Content function render( $settings ) { // Get latest posts from database $query_arguments = array( 'posts_per_page' => 3, 'ignore_sticky_posts' => true, 'cat' => (int)$settings['category'] ); $posts_query = new WP_Query( $query_arguments ); // Check if there are posts if( $posts_query->have_posts() ) : // Limit the number of words for the excerpt add_filter('excerpt_length', 'anderson_category_posts_widgets_excerpt_length'); // Display Posts while( $posts_query->have_posts() ) : $posts_query->the_post(); ?>
esc_html__( 'All Categories', 'anderson-lite' ),
'show_count' => true,
'hide_empty' => false,
'selected' => $settings['category'],
'name' => $this->get_field_name('category'),
'id' => $this->get_field_id('category')
);
wp_dropdown_categories( $args );
?>