includes(); add_action( 'plugins_loaded', array( $this, 'init' ) ); } /** * Load plugin function files here. */ public function includes() { require_once ANY_POSTS_WIDGET_PATH . 'inc/class-apw-widget.php'; } /** * Code you want to run when all other plugins loaded. */ public function init() { load_plugin_textdomain( 'any-posts-widget', false, ANY_POSTS_WIDGET_PATH . 'languages' ); } }