Created
September 17, 2012 21:43
-
-
Save richardegil/3739976 to your computer and use it in GitHub Desktop.
Alternative Method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** 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