'' ); add_option( 'ayg_general_settings', $defaults ); } // Insert the gallery settings if ( false == get_option( 'ayg_gallery_settings' ) ) { $defaults = array( 'theme' => 'classic', 'columns' => 3, 'per_page' => 12, 'thumb_ratio' => 56.25, 'thumb_title' => 1, 'thumb_title_length' => 0, 'thumb_excerpt' => 1, 'thumb_excerpt_length' => 75, 'pagination' => 1, 'pagination_type' => 'pager' ); add_option( 'ayg_gallery_settings', $defaults ); } // Insert the player settings if ( false == get_option( 'ayg_player_settings' ) ) { $defaults = array( 'player_ratio' => 56.25, 'player_title' => 1, 'player_description' => 1, 'autoplay' => 0, 'autoadvance' => 0, 'loop' => 0, 'controls' => 1, 'modestbranding' => 1, 'cc_load_policy' => 0, 'iv_load_policy' => 0, 'hl' => '', 'cc_lang_pref' => '' ); add_option( 'ayg_player_settings', $defaults ); } // Insert the plugin version add_option( 'ayg_version', AYG_VERSION ); } }