| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/AIWEBSTATION/wp-content/plugins/wp-whatsapp/includes/Support/ |
Upload File : |
<?php
namespace NTA_WhatsApp\Support;
defined( 'ABSPATH' ) || exit;
class WPML {
protected static $instance = null;
protected $isActive = false;
public static function getInstance() {
if ( null === self::$instance ) {
self::$instance = new self();
self::$instance->doHooks();
}
return self::$instance;
}
private function doHooks() {
global $sitepress;
if ( $sitepress !== null && get_class( $sitepress ) === 'SitePress' ) {
$settings = $sitepress->get_setting( 'custom_posts_sync_option', array() );
$post_type = 'whatsapp-accounts';
if ( isset( $settings[ $post_type ] ) && ( $settings[ $post_type ] == 1 || $settings[ $post_type ] == 2 ) ) {
$this->isActive = true;
add_filter( 'njt_wa_get_post_type', array( $this, 'getPostType' ), 10, 1 );
}
}
}
public function getPostType( $args ) {
$args['suppress_filters'] = false;
return $args;
}
}