Skip to content

Instantly share code, notes, and snippets.

@korobochkin
Created October 21, 2014 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save korobochkin/82c7874243699f58b761 to your computer and use it in GitHub Desktop.
Save korobochkin/82c7874243699f58b761 to your computer and use it in GitHub Desktop.
Some fucking stuff from gt3themes.com studio
<?php
/*
* Stupid guys from http://www.gt3themes.com write this code in WordPress themes. I hate this company.
* Never buy their themes.
*
*/
header("Content-type: text/css");
$wp_include = "../../../../wp-load.php";
$i = 0;
while (!file_exists($wp_include) && $i++ < 10) {
$wp_include = "../$wp_include";
}
require($wp_include);
// ...
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment