/**
  * Includes user css + css from general settings
  */
 function handleCustomCss()
 {
     ctThemeLoader::getFilesLoader()->includeIt(CT_THEME_SETTINGS_MAIN_DIR . '/custom_style.php');
 }
 /**
  * Initializes
  */
 public function initialize()
 {
     //add scripts
     require_once CT_THEME_LIB_DIR . '/shortcodes/ctShortcodeQueryable.class.php';
     //load all shortcodes
     ctThemeLoader::getFilesLoader()->includeOnceByPattern(CT_THEME_SHORTCODE_DIR, '*/*.php');
 }