예제 #1
0
 /**
  * Loads our options, defaults to base options if not set.
  */
 public static function load_options()
 {
     self::$options = wp_parse_args(get_option('facebookalbum', self::default_options()), array('order' => '', 'title' => '', 'size' => '5', 'photo_title' => '', 'colorbox' => array('enabled' => 'true', 'width' => 'false', 'height' => 'false', 'transition' => 'elastic', 'speed' => '350', 'opacity' => '0.85', 'slideshow' => 'false', 'slideshow-speed' => '2300', 'slideshow-auto' => 'true'), 'pages' => array(), 'app_id' => '', 'app_secret' => '', 'access_token' => ''));
 }