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