__('One', 'albinomouse'), 'two' => __('Two', 'albinomouse'), 'three' => __('Three', 'albinomouse'), 'four' => __('Four', 'albinomouse'), ); // Social Media Defaults $socialmedia_defaults = array( 'twitter' => '', 'googleplus' => '', 'facebook' => '' ); // Social Media Options $socialmedia_options = array( 'twitter' => __('Tweet Button (Twitter)', 'albinomouse'), 'googleplus' => __('+1 Button (Google+)', 'albinomouse'), 'facebook' => __('Like Button (Facebook)', 'albinomouse') ); // Background Defaults $background_defaults = array( 'color' => '', 'image' => '', 'repeat' => 'repeat', 'position' => 'top center', 'attachment'=>'scroll' ); // Directory path to image radio buttons $imagepath = get_template_directory_uri() . '/inc/images/'; $options = array(); $options[] = array( 'name' => __('Layout', 'albinomouse'), 'type' => 'heading'); $options[] = array( 'name' => __('Link and Footer Color', 'albinomouse'), 'desc' => __('Choose your own link and footer color.', 'albinomouse'), 'id' => 'link_footer_color', 'std' => '#e3272d', 'type' => 'color' ); $options[] = array( 'name' => __('Your Logo', 'albinomouse'), 'desc' => __('Upload your logo via the familiar media upload window. Press «Use This Image» to close the window. The Logo will now appear instead of the title of your website.', 'albinomouse'), 'id' => 'logo-upload', 'std' => '', 'type' => 'upload'); $options[] = array( 'name' => __('Header Background', 'albinomouse'), 'desc' => __('Your able to choose between a transparent (same color like the general background) and light gray header background. The light gray header background is slightly transparent as well.', 'albinomouse'), 'id' => 'header-background', 'std' => 'light-gray', 'type' => 'images', 'options' => array( 'transparent' => $imagepath . 'transparent-header.png', 'light-gray' => $imagepath . 'light-gray-header.png')); $options[] = array( 'name' => __('Description of your Site', 'albinomouse'), 'desc' => __('Display the description (Tagline) on your site.', 'albinomouse'), 'id' => 'site-description', 'std' => '1', 'type' => 'checkbox'); $options[] = array( 'name' => __('General Background', 'albinomouse'), 'desc' => __('Change the background of your site.', 'albinomouse'), 'id' => 'general-background', 'std' => $background_defaults, 'type' => 'background' ); $options[] = array( 'name' => __('Sidebar Layout', 'albinomouse'), 'desc' => __('You can disable the sidebar and use the full width for your content.', 'albinomouse'), 'id' => 'sidebar-layout', 'std' => '2c-r', 'type' => 'images', 'options' => array( '1col' => $imagepath . 'no-sidebar.png', '2c-r' => $imagepath . 'sidebar-right.png')); $options[] = array( 'name' => __('Footer Layout', 'albinomouse'), 'desc' => __('How many widgets do you have to load into the footer?', 'albinomouse'), 'id' => 'footer-layout', 'std' => '3col', 'type' => 'images', 'options' => array( '1col' => $imagepath . 'footer-one-col.png', '2col' => $imagepath . 'footer-two-col.png', '3col' => $imagepath . 'footer-three-col.png', '4col' => $imagepath . 'footer-four-col.png')); $options[] = array( 'name' => __('Typography', 'albinomouse'), 'type' => 'heading'); $options[] = array( 'name' => __('Title Font', 'albinomouse'), 'desc' => __('Choose your favorite google web font.', 'albinomouse'), 'id' => 'title_font', 'std' => 'Bitter', 'type' => 'select', 'options' => array( 'Anton' => 'Anton', 'Bitter' => 'Bitter', 'Droid Sans' => 'Droid Sans', 'Droid Serif' => 'Droid Serif', 'Open Sans' => 'Open Sans', 'Source Sans Pro' => 'Source Sans Pro', 'Ubuntu' => 'Ubuntu', 'Yanone Kaffeesatz' => 'Yanone Kaffeesatz')); $options[] = array( 'name' => __('General Font', 'albinomouse'), 'desc' => __('Choose your favorite google web font.', 'albinomouse'), 'id' => 'general_font', 'std' => 'Open Sans', 'type' => 'select', 'options' => array( 'Droid Sans' => 'Droid Sans', 'Droid Serif' => 'Droid Serif', 'Open Sans' => 'Open Sans', 'Source Sans Pro' => 'Source Sans Pro', 'Ubuntu' => 'Ubuntu')); $options[] = array( 'name' => __('Advanced', 'albinomouse'), 'type' => 'heading'); $options[] = array( 'name' => __('Favicon', 'albinomouse'), 'desc' => __('Customize your website with your own Favicon.', 'albinomouse'), 'id' => 'favicon-upload', 'std' => '', 'type' => 'upload'); $options[] = array( 'name' => __('Social Media Buttons', 'albinomouse'), 'desc' => __('If checked, the social media buttons will appear bellow every post.', 'albinomouse'), 'id' => 'social-media-buttons', 'std' => $socialmedia_defaults, 'type' => 'multicheck', 'options' => $socialmedia_options); $options[] = array( 'name' => __('Custom Copyright Text', 'albinomouse'), 'desc' => __('Change the default copyright text.', 'albinomouse'), 'id' => 'copyright-text', 'std' => '', 'type' => 'textarea'); return $options; }