Skip to content

Instantly share code, notes, and snippets.

View NavidVafaeiMajd's full-sized avatar
🏠
alwase work

Navid Vafaei Majd NavidVafaeiMajd

🏠
alwase work
View GitHub Profile
@NavidVafaeiMajd
NavidVafaeiMajd / function.php
Last active February 5, 2026 12:50
telegram plugin automation
add_action('wp_login', 'send_telegram_on_login', 10, 2);
function send_telegram_on_login($user_login, $user) {
$bot_token = 'your-token';
$chat_id = '1111';
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
$ip = $_SERVER['HTTP_CLIENT_IP'];