*/ class Accordion_For_WP_Admin_Options { public function __construct() { $this->register_custom_post_type(); $this->register_option_page(); } public function register_custom_post_type() { require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/posttype/class-afwp-accordion-post-type.php'; require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/posttype/class-afwp-tab-post-type.php'; } public function register_option_page(){ require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/optionpage/class-afwp-settings-page.php'; require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/optionpage/class-afwp-shortcode-generator.php'; } } new Accordion_For_WP_Admin_Options();