Skip to content

Instantly share code, notes, and snippets.

@Takazudo
Created November 19, 2010 06:06
Show Gist options
  • Save Takazudo/706176 to your computer and use it in GitHub Desktop.
Save Takazudo/706176 to your computer and use it in GitHub Desktop.
/* something to include wordpress page */
$s = $_SERVER;
$name = $s['SERVER_NAME'];
$url = strpos($s['SERVER_PROTOCOL'], 'HTTPS') ? 'https://' : 'http://';
$url .= $name . '/press/index.php';
$url = htmlspecialchars($url);
echo file_get_contents($url);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment