rveitch
8/3/2015 - 8:58 PM

Load an included file in WordPress

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' );