Skip to content

Instantly share code, notes, and snippets.

@rveitch
Created August 3, 2015 20:58
Show Gist options
  • Select an option

  • Save rveitch/e68ee5a4a242f794f625 to your computer and use it in GitHub Desktop.

Select an option

Save rveitch/e68ee5a4a242f794f625 to your computer and use it in GitHub Desktop.
Load an included file in WordPress
<?php
/**
* Load an included file
*/
function load_this_file() {
require_once( plugin_dir_path( __FILE__ ) . 'includes/this-file.php' );
}
add_action( 'init', 'load_this_file' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment