| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/ia/wp-content/plugins/category-posts/ |
Upload File : |
<?php
/**
* Server side implementation of localized dates handling.
*
* @package categoryposts.
*
* @since 4.9
*/
namespace categoryPosts;
// Don't call the file directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Embed the front end JS for load more.
*
* @since 4.9
*/
function embed_date_scripts() {
echo '<script>{';
$suffix = 'min.js';
if ( defined( 'WP_DEBUG' ) && WP_DEBUG === true ) {
$suffix = 'js';
}
include __DIR__ . '/js/frontend/date.' . $suffix;
echo '}</script>';
}