PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/logokingdom.online/wp-content/plugins/wp-live-chat-support/js/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //home/trave494/logokingdom.online/wp-content/plugins/wp-live-chat-support/js/wplc_dashboard.js

var wplcApiUrls = {
	blogFeedUrl: 'https://wp-livechat.com/wp-json/wp/v2/posts',
  visitorURL: wplc_get_random_server() + '/api/v1/total-visitors-online?api_key='+nifty_api_key
}

function getTotalVisitors() {
	jQuery.getJSON( wplcApiUrls.visitorURL, function( data ) {
		jQuery('#totalVisitors').html( data );
	});
}

function getBlogPosts() {
	jQuery.getJSON( wplcApiUrls.blogFeedUrl, function( data ) {
		
		const limit = 5;
		let output = '';
		
		for (let i in data){
			if(i >= limit){
				continue;
			}

			const post = data[i];
			const html = `<div class='wplc_post'>
							<div class='wplc_post_title'>${post.title.rendered}</div>
							<p class='wplc_post_excerpt'>${post.excerpt.rendered}</p>
							<div class='wplc_post_readmore'>
								<a href='${post.link}' target='_BLANK' title='${post.title.rendered}'>Read More</a>
							</div>
						</div>`;
			output += html;
    }
    
		jQuery('#wplc_blog_posts').html( output );
		
	});
}

jQuery(document).ready(function($){
	getBlogPosts();
	getTotalVisitors();
});