/** * get_options() * * @return array $options **/ static function get_options() { static $o; if (!is_admin() && isset($o)) { return $o; } $o = get_option('sem_seo'); if ($o === false || !isset($o['google_plus_publisher'])) { $o = sem_seo::init_options(); } return $o; }