[ Avaa Bypassed ]




Upload:

Command:

www-data@3.144.16.26: ~ $
<?php
// function to display number of posts.
function tie_views( $text ='' , $postID ='' ){
	global $post;

	if( !tie_get_option( 'post_views' ) ){
		return false;
	}

	if( empty($postID) ){
		$postID = $post->ID ;
	}

    $count_key 	= 'tie_views';
    $count 		= get_post_meta($postID, $count_key, true);
		$count 		= @number_format( (float)$count );
    if( empty($count) ){
        delete_post_meta($postID, $count_key);
        add_post_meta($postID, $count_key, 0 );
        $count = 0;
    }
    return '<span class="post-views"><i class="fa fa-eye"></i>'.$count.' '.$text.'</span> ';
}

// function to count views.
function tie_setPostViews() {
	global $post, $page;

	if( !tie_get_option( 'post_views' ) || $page > 1  ){
		return false;
	}

	$count 		= 0;
	$postID 	= $post->ID ;
    $count_key 	= 'tie_views';
    $count 		= (int)get_post_meta($postID, $count_key, true);

	if( !defined('WP_CACHE') || !WP_CACHE ){
		$count++;
		update_post_meta($postID, $count_key, (int)$count);
	}
}

### Function: Calculate Post Views With WP_CACHE Enabled
add_action('wp_enqueue_scripts', 'tie_postview_cache_count_enqueue');
function tie_postview_cache_count_enqueue() {
	global $post;
	if ( is_single() && ( defined('WP_CACHE') && WP_CACHE) && tie_get_option( 'post_views' ) ) {
		// Enqueue and localize script here
		wp_register_script( 'tie-postviews-cache', get_template_directory_uri() . '/js/postviews-cache.js', array( 'jquery' ) );
		wp_localize_script( 'tie-postviews-cache', 'tieViewsCacheL10n', array('admin_ajax_url' => admin_url('admin-ajax.php', (is_ssl() ? 'https' : 'http')), 'post_id' => intval($post->ID)));
		wp_enqueue_script ( 'tie-postviews-cache');
	}
}

### Function: Increment Post Views
add_action('wp_ajax_postviews', 'tie_increment_views');
add_action('wp_ajax_nopriv_postviews', 'tie_increment_views');
function tie_increment_views() {
	global $wpdb;
	if(!empty($_GET['postviews_id']) && tie_get_option( 'post_views' ))
	{
		$post_id = intval($_GET['postviews_id']);
		if($post_id > 0 && defined('WP_CACHE') && WP_CACHE) {
			$count 		= 0;
			$count_key 	= 'tie_views';
			$count 		= (int)get_post_meta($post_id, $count_key, true);
			$count++;

			update_post_meta($post_id, $count_key, (int)$count);
			echo $count;
		}
	}
	exit();
}


// Add it to a column in WP-Admin
add_filter('manage_posts_columns', 'tie_posts_column_views');
add_action('manage_posts_custom_column', 'tie_posts_custom_column_views',5,2);
function tie_posts_column_views($defaults){
    $defaults['tie_post_views'] = __ti( 'Views' );
    return $defaults;
}
function tie_posts_custom_column_views($column_name, $id){
	if( $column_name === 'tie_post_views' ){
        echo tie_views( '', get_the_ID() );
    }
}
?>

Filemanager

Name Type Size Permission Actions
arqam-lite.php File 52.53 KB 0664
breadcrumbs.php File 9.19 KB 0664
common-scripts.php File 30.49 KB 0664
mega-menus.php File 32.27 KB 0664
pagenavi.php File 7.48 KB 0664
search-live.php File 17.91 KB 0664
theme-functions.php File 82.97 KB 0664
theme-functions.php.bak File 82.58 KB 0664
tie-views.php File 2.65 KB 0664
translation.php File 5.92 KB 0664