HamroKhanpin/hamrokhaanpaan/wp-content/__plugins/wp-trending-post-slider-and-widget/includes/class-wtpsw-public.php

54 lines
1.1 KiB
PHP
Raw Normal View History

2024-04-29 07:27:44 +00:00
<?php
/**
* Public Class
*
* Handles the public side functionality of plugin
*
* @package WP Trending Post Slider and Widget
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Wtpsw_Public {
function __construct(){
// Ajax call to update post count
add_action( 'wp_ajax_wtpsw_post_view_count', array($this, 'wtpsw_post_view_count') );
add_action( 'wp_ajax_nopriv_wtpsw_post_view_count',array( $this, 'wtpsw_post_view_count') );
}
/**
* Function to update views of post
*
* @package WP Trending Post Slider and Widget
* @since 1.0.0
*/
function wtpsw_post_view_count(){
$prefix = WTPSW_META_PREFIX;
$post_id = isset($_POST['post_id']) ? $_POST['post_id'] : '';
if( !empty($post_id) ) {
// Getting existing views
$views = get_post_meta( $post_id, $prefix.'views', true );
$views = !empty($views) ? $views : 0;
// Update new views
update_post_meta( $post_id, $prefix.'views', ($views+1) );
echo 'Success';
} else {
echo 'Error - Reference Id not found.';
}
die();
}
}
$wtpsw_public = new Wtpsw_Public();