Skip to content

Instantly share code, notes, and snippets.

@richardegil
Created September 17, 2012 21:43
Show Gist options
  • Save richardegil/3739976 to your computer and use it in GitHub Desktop.
Save richardegil/3739976 to your computer and use it in GitHub Desktop.
Alternative Method
*** How to use
<?php echo open_ext("https://med.uth.edu/utms-universal/utms-superinclude-topnav.php"); ?>
*** What you include in your functions.php file
function open_ext($url){
$url = $url;
$content = wp_remote_fopen($url);
if ($content<>'') {
return $content;
} else {
echo 'Woops, I think something is going wrong!';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment