![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/renascerdoestoril.com/wp-content/themes/newsphere/inc/widgets/ |
<?php if (!class_exists('Newsphere_Posts_List')) : /** * Adds Newsphere_Posts_List widget. */ class Newsphere_Posts_List extends AFthemes_Widget_Base { /** * Sets up a new widget instance. * * @since 1.0.0 */ function __construct() { $this->text_fields = array('newsphere-categorised-posts-title', 'newsphere-excerpt-length', 'newsphere-posts-number'); $this->select_fields = array('newsphere-select-category', 'newsphere-show-excerpt'); $widget_ops = array( 'classname' => 'newsphere_posts_list list-layout', 'description' => __('Displays posts from selected category in a list.', 'newsphere'), 'customize_selective_refresh' => true, ); parent::__construct('newsphere_posts_list', __('AFTN Posts List', 'newsphere'), $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::newsphere_sanitize_data($instance, $instance); /** This filter is documented in wp-includes/default-widgets.php */ $title = apply_filters('widget_title', $instance['newsphere-categorised-posts-title'], $instance, $this->id_base); $category = isset($instance['newsphere-select-category']) ? $instance['newsphere-select-category'] : '0'; $number_of_posts = isset($instance['newsphere-posts-number']) ? $instance['newsphere-posts-number'] : 10; // open the widget container echo $args['before_widget']; ?> <?php if (!empty($title)): ?> <div class="em-title-subtitle-wrap"> <?php if (!empty($title)): ?> <h4 class="widget-title header-after1"> <span class="header-after"> <?php echo esc_html($title); ?> </span> </h4> <?php endif; ?> </div> <?php endif; ?> <?php $all_posts = newsphere_get_posts($number_of_posts, $category); ?> <div class="widget-block widget-wrapper"> <div class="af-container-row clearfix"> <?php $count = 1; if ($all_posts->have_posts()) : while ($all_posts->have_posts()) : $all_posts->the_post(); global $post; $thumbnail_size = 'thumbnail'; ?> <div class="col-2 pad float-l af-double-column list-style" data-mh="af-feat-list"> <div class="read-single color-pad"> <div class="read-img pos-rel col-4 float-l read-bg-img"> <a href="<?php the_permalink(); ?>"> <?php if ( has_post_thumbnail() ): the_post_thumbnail($thumbnail_size); endif; ?> </a> <span class="min-read-post-format"> <?php newsphere_post_format($post->ID); ?> <?php newsphere_count_content_words($post->ID); ?> </span> </div> <div class="read-details col-75 float-l pad color-tp-pad"> <div class="read-categories"> <?php newsphere_post_categories(); ?> </div> <div class="read-title"> <h4> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </h4> </div> <div class="entry-meta"> <?php newsphere_get_comments_count($post->ID); ?> <?php newsphere_post_item_meta(); ?> </div> </div> </div> </div> <?php $count++; endwhile; endif; wp_reset_postdata(); ?> </div> </div> <?php // close the widget container echo $args['after_widget']; } /** * Back-end widget form. * * @see WP_Widget::form() * * @param array $instance Previously saved values from database. */ public function form($instance) { $this->form_instance = $instance; $options = array( 'true' => __('Yes', 'newsphere'), 'false' => __('No', 'newsphere') ); $categories = newsphere_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::newsphere_generate_text_input('newsphere-categorised-posts-title', __('Title', 'newsphere'), __('Posts List', 'newsphere')); echo parent::newsphere_generate_select_options('newsphere-select-category', __('Select category', 'newsphere'), $categories); } //print_pre($terms); } } endif;