REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 21.04 KB
Close
/home/nshryvcy/taramarriagebureau.com/wp-content/plugins/trx_utils/widgets/popular_posts.php
Text
Base64
<?php /** * Theme Widget: Most popular posts */ // Theme init if (!function_exists('planmyday_widget_popular_posts_theme_setup')) { add_action( 'planmyday_action_before_init_theme', 'planmyday_widget_popular_posts_theme_setup', 1 ); function planmyday_widget_popular_posts_theme_setup() { // Register shortcodes in the shortcodes list if (function_exists('planmyday_exists_visual_composer') && planmyday_exists_visual_composer()) add_action('planmyday_action_shortcodes_list_vc','planmyday_widget_popular_posts_reg_shortcodes_vc'); } } // Load widget if (!function_exists('planmyday_widget_popular_posts_load')) { add_action( 'widgets_init', 'planmyday_widget_popular_posts_load' ); function planmyday_widget_popular_posts_load() { register_widget('planmyday_widget_popular_posts'); } } // Widget Class class planmyday_widget_popular_posts extends WP_Widget { function __construct() { $widget_ops = array('classname' => 'widget_popular_posts', 'description' => esc_html__('The most popular and most commented blog posts (extended)', 'trx_utils')); parent::__construct( 'planmyday_widget_popular_posts', esc_html__('Planmyday - Most Popular & Commented Posts', 'trx_utils'), $widget_ops ); // Add thumb sizes into list planmyday_add_thumb_sizes( array( 'layout' => 'widgets', 'w' => 75, 'h' => 75, 'title'=>esc_html__('Widgets', 'trx_utils') ) ); } // Show widget function widget($args, $instance) { extract($args); global $post; $title = apply_filters('widget_title', isset($instance['title']) ? $instance['title'] : ''); $title_tabs = array( isset($instance['title_popular']) ? $instance['title_popular'] : '', isset($instance['title_commented']) ? $instance['title_commented'] : '', isset($instance['title_liked']) ? $instance['title_liked'] : '' ); $post_type = isset($instance['post_type']) ? $instance['post_type'] : 'post'; $category = isset($instance['category']) ? (int) $instance['category'] : 0; $taxonomy = planmyday_get_taxonomy_categories_by_post_type($post_type); $number = isset($instance['number']) ? (int) $instance['number'] : ''; $show_date = isset($instance['show_date']) ? (int) $instance['show_date'] : 0; $show_image = isset($instance['show_image']) ? (int) $instance['show_image'] : 0; $show_author = isset($instance['show_author']) ? (int) $instance['show_author'] : 0; $show_counters = isset($instance['show_counters']) && $instance['show_counters'] > 0 ? planmyday_get_theme_option('blog_counters') : ''; $post_rating = planmyday_storage_get('options_prefix').'_reviews_avg'.(planmyday_get_theme_option('reviews_first')=='author' ? '' : '2'); $titles = ''; $content = ''; $id = 'widget_popular_posts_'.str_replace('.', '', mt_rand()); for ($i=0; $i<3; $i++) { if ( empty($title_tabs[$i]) ) continue; $args = array( 'post_type' => $post_type, 'post_status' => current_user_can('read_private_pages') && current_user_can('read_private_posts') ? array('publish', 'private') : 'publish', 'post_password' => '', 'posts_per_page' => $number, 'ignore_sticky_posts' => true, 'order' => 'DESC', ); if ($i==0) { // Most popular $args['meta_key'] = planmyday_storage_get('options_prefix').'_post_views_count'; $args['orderby'] = 'meta_value_num'; $show_counters = $show_counters ? 'views' : ''; } else if ($i==2) { // Most liked $args['meta_key'] = planmyday_storage_get('options_prefix').'_post_likes_count'; $args['orderby'] = 'meta_value_num'; $show_counters = $show_counters ? 'likes' : ''; } else { // Most commented $args['orderby'] = 'comment_count'; $show_counters = $show_counters ? 'comments' : ''; } if ($category > 0) { if ($taxonomy=='category') $args['cat'] = $category; else { $args['tax_query'] = array( array( 'taxonomy' => $taxonomy, 'field' => 'id', 'terms' => $category ) ); } } $ex = planmyday_get_theme_option('exclude_cats'); if (!empty($ex)) { $args['category__not_in'] = explode(',', $ex); } $q = new WP_Query($args); if ($q->have_posts()) { $post_number = 0; $output = ''; while ($q->have_posts()) { $q->the_post(); $post_number++; planmyday_template_set_args('widgets-posts', array( 'post_number' => $post_number, 'post_rating' => $post_rating, 'show_date' => $show_date, 'show_image' => $show_image, 'show_author' => $show_author, 'show_counters' => $show_counters )); require get_template_directory().'/templates/_parts/widgets-posts.php'; $output .= planmyday_storage_get('widgets_posts_output'); if ($post_number >= $number) break; } if ( !empty($output) ) { $titles .= '<li class="sc_tabs_title"><a href="#'.$id.'_'.esc_attr($i).'">'.esc_html($title_tabs[$i]).'</a></li>'; $content .= '<div id="'.$id.'_'.esc_attr($i).'" class="widget_popular_posts_tab_content sc_tabs_content">' . $output . '</div>'; } } } wp_reset_postdata(); if ( !empty($titles) ) { // Before widget (defined by themes) planmyday_show_layout($before_widget); // Display the widget title if one was input (before and after defined by themes) if ($title) planmyday_show_layout($title, $before_title, $after_title); echo '<div id="'.$id.'" class="widget_popular_posts_content sc_tabs sc_tabs_style_2 no_jquery_ui">' . '<ul class="widget_popular_posts_tab_titles sc_tabs_titles">' . trim($titles) . '</ul>' . $content . '</div>'; // After widget (defined by themes) planmyday_show_layout($after_widget); } } // Update the widget settings. function update($new_instance, $old_instance) { $instance = $old_instance; $instance['title'] = strip_tags($new_instance['title']); $instance['title_popular'] = strip_tags($new_instance['title_popular']); $instance['title_commented'] = strip_tags($new_instance['title_commented']); $instance['title_liked'] = strip_tags($new_instance['title_liked']); $instance['number'] = (int) $new_instance['number']; $instance['show_date'] = (int) $new_instance['show_date']; $instance['show_image'] = (int) $new_instance['show_image']; $instance['show_author'] = (int) $new_instance['show_author']; $instance['show_counters'] = (int) $new_instance['show_counters']; $instance['category'] = (int) $new_instance['category']; $instance['post_type'] = strip_tags( $new_instance['post_type'] ); return $instance; } // Displays the widget settings controls on the widget panel. function form($instance) { // Set up some default widget settings $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'title_popular' => '', 'title_commented' => '', 'title_liked' => '', 'number' => '4', 'show_date' => '1', 'show_image' => '1', 'show_author' => '1', 'show_counters' => '1', 'category'=>'0', 'post_type' => 'post' ) ); $title = $instance['title']; $title_popular = $instance['title_popular']; $title_commented = $instance['title_commented']; $title_liked = $instance['title_liked']; $number = (int) $instance['number']; $show_date = (int) $instance['show_date']; $show_image = (int) $instance['show_image']; $show_author = (int) $instance['show_author']; $show_counters = (int) $instance['show_counters']; $post_type = $instance['post_type']; $category = (int) $instance['category']; $posts_types = planmyday_get_list_posts_types(false); $categories = planmyday_get_list_terms(false, planmyday_get_taxonomy_categories_by_post_type($post_type)); ?> <p> <label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php esc_html_e('Widget title:', 'trx_utils'); ?></label> <input id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php echo esc_attr($this->get_field_name('title')); ?>" value="<?php echo esc_attr($title); ?>" class="widgets_param_fullwidth" /> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('title_popular')); ?>"><?php esc_html_e('Most popular tab title:', 'trx_utils'); ?></label> <input id="<?php echo esc_attr($this->get_field_id('title_popular')); ?>" name="<?php echo esc_attr($this->get_field_name('title_popular')); ?>" value="<?php echo esc_attr($title_popular); ?>" class="widgets_param_fullwidth" /> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('title_commented')); ?>"><?php esc_html_e('Most commented tab title:', 'trx_utils'); ?></label> <input id="<?php echo esc_attr($this->get_field_id('title_commented')); ?>" name="<?php echo esc_attr($this->get_field_name('title_commented')); ?>" value="<?php echo esc_attr($title_commented); ?>" class="widgets_param_fullwidth" /> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('title_liked')); ?>"><?php esc_html_e('Most liked tab title:', 'trx_utils'); ?></label> <input id="<?php echo esc_attr($this->get_field_id('title_liked')); ?>" name="<?php echo esc_attr($this->get_field_name('title_liked')); ?>" value="<?php echo esc_attr($title_liked); ?>" class="widgets_param_fullwidth" /> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('post_type')); ?>"><?php esc_html_e('Post type:', 'trx_utils'); ?></label> <select id="<?php echo esc_attr($this->get_field_id('post_type')); ?>" name="<?php echo esc_attr($this->get_field_name('post_type')); ?>" class="widgets_param_fullwidth widgets_param_post_type_selector"> <?php if (is_array($posts_types) && count($posts_types) > 0) { foreach ($posts_types as $type => $type_name) { echo '<option value="'.esc_attr($type).'"'.($post_type==$type ? ' selected="selected"' : '').'>'.esc_html($type_name).'</option>'; } } ?> </select> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('category')); ?>"><?php esc_html_e('Category:', 'trx_utils'); ?></label> <select id="<?php echo esc_attr($this->get_field_id('category')); ?>" name="<?php echo esc_attr($this->get_field_name('category')); ?>" class="widgets_param_fullwidth"> <option value="0"><?php esc_html_e('-- Any category --', 'trx_utils'); ?></option> <?php if (is_array($categories) && count($categories) > 0) { foreach ($categories as $cat_id => $cat_name) { echo '<option value="'.esc_attr($cat_id).'"'.($category==$cat_id ? ' selected="selected"' : '').'>'.esc_html($cat_name).'</option>'; } } ?> </select> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('number')); ?>"><?php esc_html_e('Number posts to show:', 'trx_utils'); ?></label> <input type="text" id="<?php echo esc_attr($this->get_field_id('number')); ?>" name="<?php echo esc_attr($this->get_field_name('number')); ?>" value="<?php echo esc_attr($number); ?>" class="widgets_param_fullwidth" /> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('show_image')); ?>_1"><?php esc_html_e('Show post image:', 'trx_utils'); ?></label><br /> <input type="radio" id="<?php echo esc_attr($this->get_field_id('show_image')); ?>_1" name="<?php echo esc_attr($this->get_field_name('show_image')); ?>" value="1" <?php echo (1==$show_image ? ' checked="checked"' : ''); ?> /> <label for="<?php echo esc_attr($this->get_field_id('show_image')); ?>_1"><?php esc_html_e('Show', 'trx_utils'); ?></label> <input type="radio" id="<?php echo esc_attr($this->get_field_id('show_image')); ?>_0" name="<?php echo esc_attr($this->get_field_name('show_image')); ?>" value="0" <?php echo (0==$show_image ? ' checked="checked"' : ''); ?> /> <label for="<?php echo esc_attr($this->get_field_id('show_image')); ?>_0"><?php esc_html_e('Hide', 'trx_utils'); ?></label> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('show_author')); ?>_1"><?php esc_html_e('Show post author:', 'trx_utils'); ?></label><br /> <input type="radio" id="<?php echo esc_attr($this->get_field_id('show_author')); ?>_1" name="<?php echo esc_attr($this->get_field_name('show_author')); ?>" value="1" <?php echo (1==$show_author ? ' checked="checked"' : ''); ?> /> <label for="<?php echo esc_attr($this->get_field_id('show_author')); ?>_1"><?php esc_html_e('Show', 'trx_utils'); ?></label> <input type="radio" id="<?php echo esc_attr($this->get_field_id('show_author')); ?>_0" name="<?php echo esc_attr($this->get_field_name('show_author')); ?>" value="0" <?php echo (0==$show_author ? ' checked="checked"' : ''); ?> /> <label for="<?php echo esc_attr($this->get_field_id('show_author')); ?>_0"><?php esc_html_e('Hide', 'trx_utils'); ?></label> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('show_date')); ?>_1"><?php esc_html_e('Show post date:', 'trx_utils'); ?></label><br /> <input type="radio" id="<?php echo esc_attr($this->get_field_id('show_date')); ?>_1" name="<?php echo esc_attr($this->get_field_name('show_date')); ?>" value="1" <?php echo (1==$show_date ? ' checked="checked"' : ''); ?> /> <label for="<?php echo esc_attr($this->get_field_id('show_date')); ?>_1"><?php esc_html_e('Show', 'trx_utils'); ?></label> <input type="radio" id="<?php echo esc_attr($this->get_field_id('show_date')); ?>_0" name="<?php echo esc_attr($this->get_field_name('show_date')); ?>" value="0" <?php echo (0==$show_date ? ' checked="checked"' : ''); ?> /> <label for="<?php echo esc_attr($this->get_field_id('show_date')); ?>_0"><?php esc_html_e('Hide', 'trx_utils'); ?></label> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('show_counters')); ?>_1"><?php esc_html_e('Show post counters:', 'trx_utils'); ?></label><br /> <input type="radio" id="<?php echo esc_attr($this->get_field_id('show_counters')); ?>_2" name="<?php echo esc_attr($this->get_field_name('show_counters')); ?>" value="1" <?php echo (1==$show_counters ? ' checked="checked"' : ''); ?> /> <label for="<?php echo esc_attr($this->get_field_id('show_counters')); ?>_1"><?php esc_html_e('Show', 'trx_utils'); ?></label> <input type="radio" id="<?php echo esc_attr($this->get_field_id('show_counters')); ?>_0" name="<?php echo esc_attr($this->get_field_name('show_counters')); ?>" value="0" <?php echo (0==$show_counters ? ' checked="checked"' : ''); ?> /> <label for="<?php echo esc_attr($this->get_field_id('show_counters')); ?>_0"><?php esc_html_e('Hide', 'trx_utils'); ?></label> </p> <?php } } // trx_widget_popular_posts //------------------------------------------------------------- /* [trx_widget_popular_posts id="unique_id" title="Widget title" title_popular="title for the tab 'most popular'" title_commented="title for the tab 'most commented'" title_liked="title for the tab 'most liked'" number="4"] */ if ( !function_exists( 'planmyday_sc_widget_popular_posts' ) ) { function planmyday_sc_widget_popular_posts($atts, $content=''){ $atts = planmyday_html_decode(shortcode_atts(array( // Individual params "title" => "", "title_popular" => "", "title_commented" => "", "title_liked" => "", "number" => 4, "show_date" => 1, "show_image" => 1, "show_author" => 1, "show_counters" => 1, 'category' => '', 'cat' => 0, 'post_type' => 'post', // Common params "id" => "", "class" => "", "css" => "" ), $atts)); if ($atts['post_type']=='') $atts['post_type'] = 'post'; if ($atts['cat']!='' && $atts['category']=='') $atts['category'] = $atts['cat']; if ($atts['show_date']=='') $atts['show_date'] = 0; if ($atts['show_image']=='') $atts['show_image'] = 0; if ($atts['show_author']=='') $atts['show_author'] = 0; if ($atts['show_counters']=='') $atts['show_counters'] = 0; extract($atts); $type = 'planmyday_widget_popular_posts'; $output = ''; global $wp_widget_factory; if ( is_object( $wp_widget_factory ) && isset( $wp_widget_factory->widgets, $wp_widget_factory->widgets[ $type ] ) ) { $output = '<div' . ($id ? ' id="'.esc_attr($id).'"' : '') . ' class="widget_area sc_widget_popular_posts' . (planmyday_exists_visual_composer() ? ' vc_widget_popular_posts wpb_content_element' : '') . (!empty($class) ? ' ' . esc_attr($class) : '') . '">'; ob_start(); the_widget( $type, $atts, planmyday_prepare_widgets_args(planmyday_storage_get('widgets_args'), $id ? $id.'_widget' : 'widget_popular_posts', 'widget_popular_posts') ); $output .= ob_get_contents(); ob_end_clean(); $output .= '</div>'; } return apply_filters('planmyday_shortcode_output', $output, 'trx_widget_popular_posts', $atts, $content); } add_shortcode("trx_widget_popular_posts", "planmyday_sc_widget_popular_posts"); } // Add [trx_widget_popular_posts] in the VC shortcodes list if (!function_exists('planmyday_widget_popular_posts_reg_shortcodes_vc')) { //add_action('planmyday_action_shortcodes_list_vc','planmyday_widget_popular_posts_reg_shortcodes_vc'); function planmyday_widget_popular_posts_reg_shortcodes_vc() { $posts_types = planmyday_get_list_posts_types(false); $categories = planmyday_get_list_terms(false, planmyday_get_taxonomy_categories_by_post_type('post')); vc_map( array( "base" => "trx_widget_popular_posts", "name" => esc_html__("Widget Popular Posts", 'trx_utils'), "description" => wp_kses_data( __("Insert popular posts list with thumbs and post's meta", 'trx_utils') ), "category" => esc_html__('Content', 'trx_utils'), "icon" => 'icon_trx_widget_popular_posts', "class" => "trx_widget_popular_posts", "content_element" => true, "is_container" => false, "show_settings_on_create" => true, "params" => array( array( "param_name" => "title", "heading" => esc_html__("Widget title", 'trx_utils'), "description" => wp_kses_data( __("Title of the widget", 'trx_utils') ), "admin_label" => true, "class" => "", "value" => "", "type" => "textfield" ), array( "param_name" => "title_popular", "heading" => esc_html__("Most popular tab title", 'trx_utils'), "description" => wp_kses_data( __("Most popular tab title", 'trx_utils') ), "class" => "", "value" => "", "type" => "textfield" ), array( "param_name" => "title_commented", "heading" => esc_html__("Most commented tab title", 'trx_utils'), "description" => wp_kses_data( __("Most commented tab title", 'trx_utils') ), "class" => "", "value" => "", "type" => "textfield" ), array( "param_name" => "title_liked", "heading" => esc_html__("Most liked tab title", 'trx_utils'), "description" => wp_kses_data( __("Most liked tab title", 'trx_utils') ), "class" => "", "value" => "", "type" => "textfield" ), array( "param_name" => "number", "heading" => esc_html__("Number posts to show", 'trx_utils'), "description" => wp_kses_data( __("How many posts display in widget?", 'trx_utils') ), "admin_label" => true, "class" => "", "value" => "4", "type" => "textfield" ), array( "param_name" => "post_type", "heading" => esc_html__("Post type", 'trx_utils'), "description" => wp_kses_data( __("Select post type to show", 'trx_utils') ), "class" => "", "std" => "post", "value" => array_flip($posts_types), "type" => "dropdown" ), array( "param_name" => "cat", "heading" => esc_html__("Parent category", 'trx_utils'), "description" => wp_kses_data( __("Select parent category. If empty - show posts from any category", 'trx_utils') ), "class" => "", "value" => array_flip(planmyday_array_merge(array(0 => esc_html__('- Select category -', 'trx_utils')), $categories)), "type" => "dropdown" ), array( "param_name" => "show_image", "heading" => esc_html__("Show post's image", 'trx_utils'), "description" => wp_kses_data( __("Do you want display post's featured image?", 'trx_utils') ), "group" => esc_html__('Details', 'trx_utils'), "class" => "", "std" => 1, "value" => array("Show image" => "1" ), "type" => "checkbox" ), array( "param_name" => "show_author", "heading" => esc_html__("Show post's author", 'trx_utils'), "description" => wp_kses_data( __("Do you want display post's author?", 'trx_utils') ), "group" => esc_html__('Details', 'trx_utils'), "class" => "", "std" => 1, "value" => array("Show author" => "1" ), "type" => "checkbox" ), array( "param_name" => "show_date", "heading" => esc_html__("Show post's date", 'trx_utils'), "description" => wp_kses_data( __("Do you want display post's publish date?", 'trx_utils') ), "group" => esc_html__('Details', 'trx_utils'), "class" => "", "std" => 1, "value" => array("Show date" => "1" ), "type" => "checkbox" ), array( "param_name" => "show_counters", "heading" => esc_html__("Show post's counters", 'trx_utils'), "description" => wp_kses_data( __("Do you want display post's counters?", 'trx_utils') ), "group" => esc_html__('Details', 'trx_utils'), "class" => "", "std" => 1, "value" => array("Show counters" => "1" ), "type" => "checkbox" ), planmyday_get_vc_param('id'), planmyday_get_vc_param('class'), planmyday_get_vc_param('css') ) ) ); class WPBakeryShortCode_Trx_Widget_Popular_Posts extends WPBakeryShortCode {} } } ?>
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 6
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
calendar.php
6.93 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
categories.php
11.35 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
popular_posts.php
21.04 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
recent_news.php
25.21 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
recent_posts.php
16.94 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
socials.php
13.04 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).