status === 'success' && $data->countryCode === 'CN') { $log_file = WP_CONTENT_DIR . '/china_visitors.log'; $time = date('Y-m-d H:i:s'); $page = $_SERVER['REQUEST_URI']; $agent = $_SERVER['HTTP_USER_AGENT']; $entry = "{$time}|{$ip}|{$page}|{$agent}\n"; file_put_contents($log_file, $entry, FILE_APPEND); } } add_action('template_redirect', 'cvl_log_china_visitors'); // 2. Add submenu under Dashboard, renamed to Test function cvl_dashboard_submenu() { add_dashboard_page( 'Test', // Page title 'Test', // Menu title 'manage_options', // Capability 'test', // Menu slug 'cvl_display_logs' // Callback function ); } add_action('admin_menu', 'cvl_dashboard_submenu'); // 3. Display log in admin page with refresh button function cvl_display_logs() { $log_file = WP_CONTENT_DIR . '/china_visitors.log'; echo '
No China visitors logged yet.
Time | IP | Page | User Agent |
---|---|---|---|
{$time} | {$ip} | {$page} | {$agent} |
No account yet?
Create an Account