����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 Posts Widget
class Pmthemes_Tabbed_Content_Widget extends WP_Widget {
var $number = 7;
var $thumbs = 0;
function __construct() {
parent::__construct(
'pmthemes_tabbed_content', // ID
sprintf( esc_html__( 'PM Tabbed Content', 'pmthemes' )), // Name
array( 'classname' => 'pmthemes_tabbed_content', 'description' => esc_html__( 'Displays various content with tabs.', 'pmthemes' ) ), // Args
array( 'width' => 450, 'id_base' => 'pmthemes_tabbed_content' ) // Controls
);
// Enqueue Javascript for Tabs
if ( is_active_widget(false, false, $this->id_base) )
add_action( 'wp_head', array(&$this, 'widget_tabbed_javascript') );
add_action( 'save_post', array(&$this, 'flush_widget_cache') );
add_action( 'deleted_post', array(&$this, 'flush_widget_cache') );
add_action( 'switch_theme', array(&$this, 'flush_widget_cache') );
add_action( 'comment_post', array(&$this, 'flush_widget_cache') );
add_action( 'transition_comment_status', array(&$this, 'flush_widget_cache') );
}
function widget_tabbed_javascript($args) { ?>
<script type="text/javascript">
//<![CDATA[
jQuery(document).ready(function($) {
$.fn.tabbedWidget = function( options ) {
var instance = '#' + options.instance;
$(instance + ' .widget-tabnavi li a:first').addClass('current-tab'); //add active class to the first li
$(instance + ' .tabdiv').hide(); //hide all content classes.
$(instance + ' .tabdiv:first').show(); //show only first div content
$(instance + ' .widget-tabnavi li a').click(function(){ //add the click function
$(instance + ' .widget-tabnavi li a').removeClass('current-tab'); //remove current-tab class from previous li
$(this).addClass('current-tab'); //add current-tab class to the active li.
$(instance + ' .tabdiv').hide(); //hide all content classes
var activeTab = $(this).attr('href'); //find the href attribute of the active tab
$(activeTab).fadeIn('fast'); //fade in the content of active tab
return false;
});
};
});
//]]>
</script>
<?php
}
function widget($args, $instance) {
$cache = wp_cache_get('widget_pmthemes_tabbed', '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;
}
ob_start();
extract($args);
$title = empty($instance['title']) ? '' : apply_filters('widget_title', $instance['title']);
// Tab Titles
$tab_one_title = empty( $instance['tab_one_title'] ) ? 'Tab 1' : $instance['tab_one_title'];
$tab_two_title = empty( $instance['tab_two_title'] ) ? 'Tab 2' : $instance['tab_two_title'];
$tab_three_title = empty( $instance['tab_three_title'] ) ? 'Tab 3' : $instance['tab_three_title'];
$tab_four_title = empty( $instance['tab_four_title'] ) ? 'Tab 4' : $instance['tab_four_title'];
// Tab Contents
$tab_one_content = empty( $instance['tab_one_content'] ) ? 0 : $instance['tab_one_content'];
$tab_two_content = empty( $instance['tab_two_content'] ) ? 0 : $instance['tab_two_content'];
$tab_three_content = empty( $instance['tab_three_content'] ) ? 0 : $instance['tab_three_content'];
$tab_four_content = empty( $instance['tab_four_content'] ) ? 0 : $instance['tab_four_content'];
// Other Variables
if ( empty( $instance['number'] ) || ! $this->number = absint( $instance['number'] ) )
$this->number = 10;
$this->thumbs = (int)$instance['thumbnails'];
$this->postme = (int)$instance['postmeta'];
// Output Widget
echo $before_widget;
if ( $title ) echo $before_title . $title . $after_title;
$i = $args['widget_id'];
echo "<script type=\"text/javascript\">
//<![CDATA[
jQuery(document).ready(function($) {
$('body').tabbedWidget({'instance' : '".$i."'});
});
//]]>
</script>";
?>
<div class="widget-tabbed">
<div class="widget-tabnavi">
<ul class="widget-tabnav">
<?php if ( $tab_one_content != 0 ) : ?><li><a href="#<?php echo $i; ?>-tabbed-1"><?php echo $tab_one_title; ?></a></li><?php endif; ?>
<?php if ( $tab_two_content != 0 ) : ?><li><a href="#<?php echo $i; ?>-tabbed-2"><?php echo $tab_two_title; ?></a></li><?php endif; ?>
<?php if ( $tab_three_content != 0 ) : ?><li><a href="#<?php echo $i; ?>-tabbed-3"><?php echo $tab_three_title; ?></a></li><?php endif; ?>
<?php if ( $tab_four_content != 0 ) : ?><li><a href="#<?php echo $i; ?>-tabbed-4"><?php echo $tab_four_title; ?></a></li><?php endif; ?>
</ul>
</div>
<?php if ( $tab_one_content != 0 ) : ?><div id="<?php echo $i; ?>-tabbed-1" class="tabdiv"><?php echo $this->widget_content($tab_one_content); ?></div><?php endif; ?>
<?php if ( $tab_two_content != 0 ) : ?><div id="<?php echo $i; ?>-tabbed-2" class="tabdiv"><?php echo $this->widget_content($tab_two_content); ?></div><?php endif; ?>
<?php if ( $tab_three_content != 0 ) : ?><div id="<?php echo $i; ?>-tabbed-3" class="tabdiv"><?php echo $this->widget_content($tab_three_content); ?></div><?php endif; ?>
<?php if ( $tab_four_content != 0 ) : ?><div id="<?php echo $i; ?>-tabbed-4" class="tabdiv"><?php echo $this->widget_content($tab_four_content); ?></div><?php endif; ?>
</div>
<?php
echo $after_widget;
$cache[$args['widget_id']] = ob_get_flush();
wp_cache_set('widget_pmthemes_tabbed', $cache, 'widget');
}
function widget_content($tab) {
switch($tab) {
case 1: // Archives
$content = '<ul>' . wp_get_archives(apply_filters('pmthemes_widget_tabbed_archives_args', array('type' => 'monthly', 'show_post_count' => 1, 'echo' => 0))) . '</ul>';
break;
case 2: // Categories
$cat_args = array('title_li' => '', 'orderby' => 'name', 'show_count' => 1, 'hierarchical' => false, 'echo' => 0);
$content = '<ul>' . wp_list_categories(apply_filters('pmthemes_widget_tabbed_categories_args', $cat_args)) . '</ul>';
break;
case 3: // Links
$content = wp_list_bookmarks(apply_filters('pmthemes_widget_tabbed_links_args', array(
'title_li' => '', 'title_before' => '<span class="widget_links_cat">', 'title_after' => '</span>', 'category_before' => '',
'category_after' => '', 'show_images' => false, 'show_description' => false, 'show_name' => true, 'show_rating' => false, 'echo' => 0)));
break;
case 4: // Meta
$content = '<ul>' . wp_register('<li>', '</li>', false) . '<li>' . wp_loginout('', false) . '</li>';
$content .= '<li><a href="'.get_bloginfo('rss2_url').'" title="'.esc_attr(__('Syndicate this site using RSS 2.0', 'pmthemes')).'">'. __('Entries <abbr title="Really Simple Syndication">RSS</abbr>', 'pmthemes').'</a></li>';
$content .= '<li><a href="'.get_bloginfo('comments_rss2_url').'" title="'.esc_attr(__('The latest comments to all posts in RSS', 'pmthemes')).'">'. __('Comments <abbr title="Really Simple Syndication">RSS</abbr>', 'pmthemes').'</a></li>';
$content .= '<li><a href="'.esc_url('http://wordpress.org/').'" title="'.esc_attr(__('Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'pmthemes')).'">'. __( 'WordPress.org', 'pmthemes') .'</a></li>';
$content .= wp_meta() . '</ul>';
break;
case 5: // Pages
$content = '<ul>' . wp_list_pages( apply_filters('pmthemes_widget_tabbed_pages_args', array('title_li' => '', 'echo' => 0) ) ) . '</ul>';
break;
case 6: // Popular Posts
$posts = new WP_Query( apply_filters( 'pmthemes_widget_tabbed_popular_posts_args', array( 'posts_per_page' => $this->number, 'orderby' => 'comment_count', 'order' => 'DESC', 'no_found_rows' => true, 'post_status' => 'publish', 'post__not_in' => array (get_the_ID()), 'ignore_sticky_posts' => true ) ) );
if ($posts->have_posts()) :
$content = '<ul>';
while ($posts->have_posts()) : $posts->the_post();
if ( $this->thumbs == 1 ) : // add thumbnail
$content .= '<li class="widget-thumb"><a href="'. get_permalink() .'" title="'. esc_attr(get_the_title() ? get_the_title() : get_the_ID()) .'">'. get_the_post_thumbnail(get_the_ID(), 'widget_post_thumb') .'</a>';
else:
$content .= '<li>';
endif;
$content .= '<a href="'. get_permalink() .'" title="'. esc_attr(get_the_title() ? get_the_title() : get_the_ID()) .'">';
if ( get_the_title() ) $content .= get_the_title(); else $content .= get_the_ID();
$content .= '</a>';
if ( $this->postme == 1 ) : // add date
$content .= '<div class="widget-postmeta"><span class="widget-date">'. get_the_time(get_option('date_format')).'</span></div>';
endif;
$content .= '</li>';
endwhile;
$content .= '</ul>';
endif;
break;
case 7: // Recent Comments
global $comments, $comment;
$comments = get_comments( apply_filters( 'pmthemes_widget_tabbed_comments_args', array( 'number' => $this->number, 'status' => 'approve', 'post_status' => 'publish' ) ) );
$content = '<ul class="widget-tabbed-comments">';
if ( $comments ) {
foreach ( (array) $comments as $comment) {
if ( $this->thumbs == 1 ) : // add avatar
$content .= '<li class="widget-avatar"><a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . get_avatar( $comment, 55 ) . '</a>';
else:
$content .= '<li>';
endif;
$content .= sprintf(_x('%1$s on %2$s', 'widgets', 'pmthemes'), get_comment_author_link(), '<a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . get_the_title($comment->comment_post_ID) . '</a>') . '</li>';
}
}
$content .= '</ul>';
break;
case 8: // Recent Posts
$posts = new WP_Query( apply_filters( 'pmthemes_widget_tabbed_recent_posts_args', array( 'posts_per_page' => $this->number, 'no_found_rows' => true, 'post_status' => 'publish', 'post__not_in' => array (get_the_ID()), 'ignore_sticky_posts' => true ) ) );
if ($posts->have_posts()) :
$content = '<ul>';
while ($posts->have_posts()) : $posts->the_post();
if ( $this->thumbs == 1 ) : // add thumbnail
$content .= '<li class="widget-thumb"><a href="'. get_permalink() .'" title="'. esc_attr(get_the_title() ? get_the_title() : get_the_ID()) .'">'. get_the_post_thumbnail(get_the_ID(), 'widget_post_thumb') .'</a>';
else:
$content .= '<li>';
endif;
$content .= '<a href="'. get_permalink() .'" title="'. esc_attr(get_the_title() ? get_the_title() : get_the_ID()) .'">';
if ( get_the_title() ) $content .= get_the_title(); else $content .= get_the_ID();
$content .= '</a>';
if ( $this->postme == 1 ) : // add date
$content .= '<div class="widget-postmeta"><span class="widget-date">'. get_the_time(get_option('date_format')).'</span></div>';
endif;
$content .= '</li>';
endwhile;
$content .= '</ul>';
endif;
break;
case 9: // Tag Cloud
$content = '<div class="tagcloud">';
$content .= wp_tag_cloud( apply_filters('pmthemes_widget_tabbed_tagcloud_args', array('taxonomy' => 'post_tag', 'echo' => false) ) );
$content .= "</div>\n";
break;
default:
$content = "Please select the Tab Content in the Widget Settings.";
break;
}
return $content;
}
function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = isset($new_instance['title']) ? esc_attr($new_instance['title']) : '';
$instance['tab_one_title'] = strip_tags($new_instance['tab_one_title']);
$instance['tab_two_title'] = strip_tags($new_instance['tab_two_title']);
$instance['tab_three_title'] = strip_tags($new_instance['tab_three_title']);
$instance['tab_four_title'] = strip_tags($new_instance['tab_four_title']);
$instance['tab_one_content'] = $new_instance['tab_one_content'] ? (int)$new_instance['tab_one_content'] : 0;
$instance['tab_two_content'] = $new_instance['tab_two_content'] ? (int)$new_instance['tab_two_content'] : 0;
$instance['tab_three_content'] = $new_instance['tab_three_content'] ? (int)$new_instance['tab_three_content'] : 0;
$instance['tab_four_content'] = $new_instance['tab_four_content'] ? (int)$new_instance['tab_four_content'] : 0;
$instance['number'] = (int) $new_instance['number'];
$instance['thumbnails'] = $new_instance['thumbnails'] ? 1 : 0;
$instance['postmeta'] = $new_instance['postmeta'] ? 1 : 0;
$this->flush_widget_cache();
return $instance;
}
function flush_widget_cache() {
wp_cache_delete('widget_pmthemes_tabbed', 'widget');
}
function widget_select_options($tab) {
$options = '<option ' . selected( $tab, 0 ) .' value="0"></option>
<option ' . selected( $tab, 1 ) .' value="1">'. __('Archives', 'pmthemes') . '</option>
<option ' . selected( $tab, 2 ) .' value="2">'. __('Categories', 'pmthemes') . '</option>
<option ' . selected( $tab, 3 ) .' value="3">'. __('Links', 'pmthemes') . '</option>
<option ' . selected( $tab, 4 ) .' value="4">'. __('Meta', 'pmthemes') . '</option>
<option ' . selected( $tab, 5 ) .' value="5">'. __('Pages', 'pmthemes') . '</option>
<option ' . selected( $tab, 6 ) .' value="6">'. __('Popular Posts', 'pmthemes') . '</option>
<option ' . selected( $tab, 7 ) .' value="7">'. __('Recent Comments', 'pmthemes') . '</option>
<option ' . selected( $tab, 8 ) .' value="8">'. __('Recent Posts', 'pmthemes') . '</option>
<option ' . selected( $tab, 9 ) .' value="9">'. __('Tag Cloud', 'pmthemes') . '</option>';
return $options;
}
function form( $instance ) {
$title = isset($instance['title']) ? esc_attr($instance['title']) : '';
$tab_one_title = isset($instance['tab_one_title']) ? esc_attr($instance['tab_one_title']) : '';
$tab_two_title = isset($instance['tab_two_title']) ? esc_attr($instance['tab_two_title']) : '';
$tab_three_title = isset($instance['tab_three_title']) ? esc_attr($instance['tab_three_title']) : '';
$tab_four_title = isset($instance['tab_four_title']) ? esc_attr($instance['tab_four_title']) : '';
$current_tab_one_content = isset($instance['tab_one_content']) ? (int)$instance['tab_one_content'] : 0;
$current_tab_two_content = isset($instance['tab_two_content']) ? (int)$instance['tab_two_content'] : 0;
$current_tab_three_content = isset($instance['tab_three_content']) ? (int)$instance['tab_three_content'] : 0;
$current_tab_four_content = isset($instance['tab_four_content']) ? (int)$instance['tab_four_content'] : 0;
$number = isset($instance['number']) ? absint($instance['number']) : 7;
$thumbnails = (isset($instance['thumbnails']) and $instance['thumbnails'] == 1) ? 'checked="checked"' : '';
$postmeta = (isset($instance['postmeta']) and $instance['postmeta'] == 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>
<div style="background: #f5f5f5; padding: 5px 10px; margin-bottom: 10px;">
<p><label for="<?php echo $this->get_field_id('tab_one_content'); ?>"><strong><?php _e('Tab 1:', 'pmthemes') ?></strong></label>
<select id='<?php echo $this->get_field_id('tab_one_content'); ?>' name='<?php echo $this->get_field_name('tab_one_content'); ?>'>
<?php echo $this->widget_select_options($current_tab_one_content); ?>
</select>
<label for="<?php echo $this->get_field_id('tab_one_title'); ?>"><?php _e('Title:', 'pmthemes'); ?></label>
<input id="<?php echo $this->get_field_id('tab_one_title'); ?>" name="<?php echo $this->get_field_name('tab_one_title'); ?>" type="text" value="<?php echo $tab_one_title; ?>" /></p>
</p>
<p><label for="<?php echo $this->get_field_id('tab_one_content'); ?>"><strong><?php _e('Tab 2:', 'pmthemes') ?></strong></label>
<select id='<?php echo $this->get_field_id('tab_two_content'); ?>' name='<?php echo $this->get_field_name('tab_two_content'); ?>'>
<?php echo $this->widget_select_options($current_tab_two_content); ?>
</select>
<label for="<?php echo $this->get_field_id('tab_two_title'); ?>"><?php _e('Title:', 'pmthemes'); ?></label>
<input id="<?php echo $this->get_field_id('tab_two_title'); ?>" name="<?php echo $this->get_field_name('tab_two_title'); ?>" type="text" value="<?php echo $tab_two_title; ?>" /></p>
</p>
<p><label for="<?php echo $this->get_field_id('tab_one_content'); ?>"><strong><?php _e('Tab 3:', 'pmthemes') ?></strong></label>
<select id='<?php echo $this->get_field_id('tab_three_content'); ?>' name='<?php echo $this->get_field_name('tab_three_content'); ?>'>
<?php echo $this->widget_select_options($current_tab_three_content); ?>
</select>
<label for="<?php echo $this->get_field_id('tab_three_title'); ?>"><?php _e('Title:', 'pmthemes'); ?></label>
<input id="<?php echo $this->get_field_id('tab_three_title'); ?>" name="<?php echo $this->get_field_name('tab_three_title'); ?>" type="text" value="<?php echo $tab_three_title; ?>" /></p>
</p>
<p><label for="<?php echo $this->get_field_id('tab_one_content'); ?>"><strong><?php _e('Tab 4:', 'pmthemes') ?></strong></label>
<select id='<?php echo $this->get_field_id('tab_four_content'); ?>' name='<?php echo $this->get_field_name('tab_four_content'); ?>'>
<?php echo $this->widget_select_options($current_tab_four_content); ?>
</select>
<label for="<?php echo $this->get_field_id('tab_four_title'); ?>"><?php _e('Title:', 'pmthemes'); ?></label>
<input id="<?php echo $this->get_field_id('tab_four_title'); ?>" name="<?php echo $this->get_field_name('tab_four_title'); ?>" type="text" value="<?php echo $tab_four_title; ?>" /></p>
</p>
</div>
<strong><?php _e('Settings for Recent/Popular Posts and Recent Comments', 'pmthemes'); ?></strong>
<p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of entries:', '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" />
<input class="checkbox" type="checkbox" <?php echo $thumbnails; ?> id="<?php echo $this->get_field_id('thumbnails'); ?>" name="<?php echo $this->get_field_name('thumbnails'); ?>" />
<label for="<?php echo $this->get_field_id('thumbnails'); ?>"><?php _e('Show Thumbnails?', 'pmthemes'); ?></label></p>
<p><input class="checkbox" type="checkbox" <?php echo $postmeta; ?> id="<?php echo $this->get_field_id('postmeta'); ?>" name="<?php echo $this->get_field_name('postmeta'); ?>" />
<label for="<?php echo $this->get_field_id('postmeta'); ?>"><?php _e('Show Postmeta(Date, Comments)?', '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 |
|