Files
CHIEFSOFT\ameye e9e5c0546c first commit
2023-11-30 13:20:54 -05:00

17 lines
258 B
JavaScript

/**
* Post Views Reset.
*/
( function( $ ) {
$( document ).ready( function() {
setTimeout(function(){
$.post( pkPostViews.ajaxurl, {
'_wpnonce': pkPostViews.nonce,
'post_id' : pkPostViews.post_id,
} );
}, 1500);
} );
} )( jQuery );