Settings > APH Merge Scripts to change some option, or you can leave it as is * Version: 1.0 * Author: Agus Prawoto Hadi * Author URI: http://www.webdevcorner.com */ // Load config for backend and frontend require_once 'aphms_config.php'; // Notice manager require_once 'aphms_admin_notices.php'; // Helper for shared function used by backend and frontend require_once 'aphms_shared.php'; if( is_admin() ) { require_once 'aphms_admin.php'; new AphmsAdmin(); } // ADMIN BAR require_once 'aphms_admin_bar.php'; $merge = new AphmsAdminBar(); $merge->init(); // FRONT (MERGE SCRIPTS) require_once 'aphms_front.php'; $merge = new AphmsFront(); $merge->init(); ?>