����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
// Add Recent Comments Widget
class Pmthemes_Recent_Comments_Widget extends WP_Widget {
var $comment_length = 40;
function __construct() {
// Setup Widget
parent::__construct(
'pmthemes_recent_comments', // ID
sprintf( esc_html__( 'PM Recent Comments', 'pmthemes' )), // Name
array(
'classname' => 'pmthemes_recent_comments',
'description' => esc_html__( 'For sidebar. Show recent comments with gravatar.', 'pmthemes' )
) // Args
);
add_action( 'comment_post', array(&$this, 'flush_widget_cache') );
add_action( 'transition_comment_status', array(&$this, 'flush_widget_cache') );
}
function widget( $args, $instance ) {
global $comments, $comment;
$cache = wp_cache_get('widget_pmthemes_recent_comments', 'widget');
if ( ! is_array( $cache ) )
$cache = array();
if ( ! isset( $args['widget_id'] ) )
$args['widget_id'] = $this->id;
if ( isset( $cache[ $args['widget_id'] ] ) ) {
echo $cache[ $args['widget_id'] ];
return;
}
extract($args, EXTR_SKIP);
$output = '';
$title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base );
if ( empty( $instance['number'] ) || ! $number = absint( $instance['number'] ) )
$number = 5;
$avatar = (int)$instance['avatar'];
$post_title = (int)$instance['post_title'];
$comment_content = (int)$instance['comment_content'];
$comment_length = $this->comment_length = empty( $instance['comment_length'] ) ? 0 : $instance['comment_length'];
$comment_date = (int)$instance['comment_date'];
$comments = get_comments( apply_filters( 'pmthemes_widget_comments_args', array( 'number' => $number, 'status' => 'approve', 'post_status' => 'publish' ) ) );
$output .= $before_widget;
if ( $title )
$output .= $before_title . $title . $after_title;
$output .= '<div class="widget-recent-comments">';
$output .= '<ul>';
if ( $comments ) {
foreach ( (array) $comments as $comment) {
if ( $avatar == 1 ) :
$output .= '<li class="widget-avatar"><a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . get_avatar( $comment, 55 ) . '</a>';
else:
$output .= '<li>';
endif;
if ( $post_title == 1 ) :
$output .= get_comment_author_link();
$output .= __(' on', 'pmthemes') . ' <a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . get_the_title($comment->comment_post_ID) . '</a>';
else:
$output .= '<a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . get_comment_author_link() . '</a>';
endif;
if ( $comment_content == 1 ) :
$output .= __(' said:', 'pmthemes') . ' <span class="comment-content">' . $this->widget_comment_length($comment->comment_content) . '</span> ';
endif;
if ( $comment_date == 1 ) :
$output .= '<div class="comment-date">' . date('M d H:i', strtotime($comment->comment_date)) . '</div>';
endif;
$output .= '</li>';
}
}
$output .= '</ul>';
$output .= '</div>';
$output .= $after_widget;
echo $output;
$cache[$args['widget_id']] = $output;
wp_cache_set('widget_pmthemes_recent_comments', $cache, 'widget');
}
function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = isset($new_instance['title']) ? esc_attr($new_instance['title']) : '';
$instance['number'] = (int) $new_instance['number'];
$instance['avatar'] = $new_instance['avatar'] ? 1 : 0;
$instance['post_title'] = $new_instance['post_title'] ? 1 : 0;
$instance['comment_content'] = $new_instance['comment_content'] ? 1 : 0;
$instance['comment_length'] = (int) $new_instance['comment_length'];
$instance['comment_date'] = $new_instance['comment_date'] ? 1 : 0;
$this->flush_widget_cache();
return $instance;
}
function widget_comment_length($comment) {
$parts = explode("\n", wordwrap($comment, $this->comment_length, "\n"));
return $parts[0];
}
function flush_widget_cache() {
wp_cache_delete('widget_pmthemes_recent_comments', 'widget');
}
function form( $instance ) {
$title = isset($instance['title']) ? esc_attr($instance['title']) : '';
$number = isset($instance['number']) ? absint($instance['number']) : 5;
$avatar = (isset($instance['avatar']) and $instance['avatar'] == 1) ? 'checked="checked"' : '';
$post_title = (isset($instance['post_title']) and $instance['post_title'] == 1) ? 'checked="checked"' : '';
$comment_content = (isset($instance['comment_content']) and $instance['comment_content'] == 1) ? 'checked="checked"' : '';
$comment_length = isset($instance['comment_length']) ? absint($instance['comment_length']) : 40;
$comment_date = (isset($instance['comment_date']) and $instance['comment_date'] == 1) ? 'checked="checked"' : '';
?>
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'pmthemes'); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
<p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of comments to show:', 'pmthemes'); ?></label>
<input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p>
<p><input class="checkbox" type="checkbox" <?php echo $avatar; ?> id="<?php echo $this->get_field_id('avatar'); ?>" name="<?php echo $this->get_field_name('avatar'); ?>" />
<label for="<?php echo $this->get_field_id('avatar'); ?>"><?php _e('Show avatar of comment author?', 'pmthemes'); ?></label></p>
<p><input class="checkbox" type="checkbox" <?php echo $post_title; ?> id="<?php echo $this->get_field_id('post_title'); ?>" name="<?php echo $this->get_field_name('post_title'); ?>" />
<label for="<?php echo $this->get_field_id('post_title'); ?>"><?php _e('Show post title of commented post?', 'pmthemes'); ?></label></p>
<p><input class="checkbox" type="checkbox" <?php echo $comment_content; ?> id="<?php echo $this->get_field_id('comment_content'); ?>" name="<?php echo $this->get_field_name('comment_content'); ?>" />
<label for="<?php echo $this->get_field_id('comment_content'); ?>"><?php _e('Show excerpt of comment?', 'pmthemes'); ?></label></p>
<p><label for="<?php echo $this->get_field_id('comment_length'); ?>"><?php _e('Excerpt length in number of characters:', 'pmthemes'); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id('comment_length'); ?>" name="<?php echo $this->get_field_name('comment_length'); ?>" type="text" value="<?php echo $comment_length; ?>" /></p>
<p><input class="checkbox" type="checkbox" <?php echo $comment_date; ?> id="<?php echo $this->get_field_id('comment_date'); ?>" name="<?php echo $this->get_field_name('comment_date'); ?>" />
<label for="<?php echo $this->get_field_id('comment_date'); ?>"><?php _e('Show date of comment?', 'pmthemes'); ?></label></p>
<?php
}
}
?>| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| popular-posts.php | File | 6.23 KB | 0644 |
|
| posts-boxed.php | File | 8.84 KB | 0644 |
|
| posts-columns.php | File | 11.12 KB | 0644 |
|
| posts-grid.php | File | 10.14 KB | 0644 |
|
| posts-single.php | File | 7.77 KB | 0644 |
|
| recent-comments.php | File | 7.1 KB | 0644 |
|
| recent-posts.php | File | 11.68 KB | 0644 |
|
| social-icons.php | File | 2.2 KB | 0644 |
|
| tabbed-content.php | File | 18.76 KB | 0644 |
|