PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
themes
/
rehub
/
inc
/
widgets
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?> <?php /** * Plugin Name: News Widget */ add_action( 'widgets_init', 'related_review_load_widget' ); function related_review_load_widget() { register_widget( 'related_review_widget' ); } class related_review_widget extends WP_Widget { function __construct() { $widget_ops = array( 'classname' => 'posts_widget', 'description' => __('A widget that displays related reviews. Works only on single review post page', 'rehub_framework') ); $control_ops = array( 'width' => 250, 'height' => 350, 'id_base' => 'related_review_widget' ); parent::__construct('related_review_widget', __('ReHub: Related Reviews', 'rehub_framework'), $widget_ops, $control_ops); } /** * How to display the widget on the screen. */ function widget( $args, $instance ) { extract( $args ); if(is_singular('post')) : /* Our variables from the widget settings. */ $title = apply_filters('widget_title', $instance['title'] ); $number = $instance['number']; global $post; $category = get_the_category($post->ID); $first_cat = $category[0]->term_id; $query = array( 'posts_per_page' => $number, 'post_status' => 'publish', 'ignore_sticky_posts' => 1, 'cat' => $first_cat, 'meta_key' => 'rehub_review_overall_score', 'orderby' => 'meta_value_num', 'post__not_in' => array($post->ID), 'meta_query' => array( array( 'key' => 'rehub_framework_post_type', 'value' => 'review', 'compare' => 'LIKE', ) ) ); $loop = new WP_Query($query); /* Before widget (defined by themes). */ echo ''.$before_widget; if ($loop->have_posts()) : /* Display the widget title if one was input (before and after defined by themes). */ if ( $title ) echo '<div class="title">' . $title . '</div>'; ?> <div class="tabs-item clearfix"> <?php while ($loop->have_posts()) : $loop->the_post(); ?> <div class="clearfix"> <figure><?php wpsm_thumb ('med_thumbs') ?> <?php rehub_formats_icons() ;?></figure> <div class="detail"> <h5 class="mt0"><a href="<?php the_permalink();?>"><?php the_title();?></a></h5> <div class="post-meta"> <?php meta_small( false, false, true ); ?> </div> <?php rehub_format_score('small') ?> </div> </div> <?php endwhile; ?> </div> <?php wp_reset_query(); ?> <?php else: ?> <?php endif; ?> <?php /* After widget (defined by themes). */ echo ''.$after_widget; endif; } /** * Update the widget settings. */ function update( $new_instance, $old_instance ) { $instance = $old_instance; /* Strip tags for title and name to remove HTML (important for text inputs). */ $instance['title'] = strip_tags( $new_instance['title'] ); $instance['number'] = strip_tags( $new_instance['number'] ); return $instance; } function form( $instance ) { /* Set up some default widget settings. */ $defaults = array( 'title' => __('Related reviews', 'rehub_framework'), 'number' => 5); $instance = wp_parse_args( (array) $instance, $defaults ); ?> <p> <label for="<?php echo ''.$this->get_field_id( 'title' ); ?>"><?php _e('Title of widget:', 'rehub_framework'); ?></label> <input type="text" class="widefat" id="<?php echo ''.$this->get_field_id( 'title' ); ?>" name="<?php echo ''.$this->get_field_name( 'title' ); ?>" value="<?php echo ''.$instance['title']; ?>" /> </p> <p> <label for="<?php echo ''.$this->get_field_id( 'number' ); ?>"><?php _e('Number of posts to show:', 'rehub_framework'); ?></label> <input type="text" class="widefat" id="<?php echo ''.$this->get_field_id( 'number' ); ?>" name="<?php echo ''.$this->get_field_name( 'number' ); ?>" value="<?php echo ''.$instance['number']; ?>" size="3" /> </p> <?php } } ?>
[+]
..
[-] related_reviews.php
[edit]
[-] condition_widget.php
[edit]
[-] tabs_widget.php
[edit]
[-] outer_ads.php
[edit]
[-] social_link_widget.php
[edit]
[-] facebook_widget.php
[edit]
[-] dealwoo.php
[edit]
[-] tabsajax_widget.php
[edit]
[-] better_menu.php
[edit]
[-] featured_sidebar.php
[edit]
[-] posts_list.php
[edit]
[-] imagetrend_sidebar.php
[edit]
[-] sticky_scroll.php
[edit]
[-] woocategory.php
[edit]
[-] top_offers.php
[edit]
[-] login_widget.php
[edit]