Skip to content

Instantly share code, notes, and snippets.

@ahmadawais
Created January 22, 2015 11:09
Show Gist options
  • Save ahmadawais/e5adafac31259f811fd7 to your computer and use it in GitHub Desktop.
Save ahmadawais/e5adafac31259f811fd7 to your computer and use it in GitHub Desktop.
Require a PHP file in WordPress plugin.
/**
*
* Require a PHP file in WordPress
*
*/
if (file_exists(dirname(__FILE__).'/admin/aa_scripts.php')) {
require_once( dirname(__FILE__).'/admin/aa_scripts.php' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment