__('Fade', 'avedon_theme_options'), '2' => __('Slide Top', 'avedon_theme_options'), '3' => __('Slide Right', 'avedon_theme_options'), '4' => __('Slide Bottom', 'avedon_theme_options'), '5' => __('Slide Left', 'avedon_theme_options'), '6' => __('Carousel Right', 'avedon_theme_options'), '7' => __('Carousel Left', 'avedon_theme_options') ); $navbar_attachments = array( 'navbar-fixed-top' => __('Fixed Top', 'avedon_theme_options'), 'navbar-fixed-bottom' => __('Fixed Bottom', 'avedon_theme_options'), 'navbar-static-top' => __('Static', 'avedon_theme_options') ); $images_number = array( 'two' => __('Two', 'avedon_theme_options'), 'three' => __('Three', 'avedon_theme_options'), 'four' => __('Four', 'avedon_theme_options'), 'five' => __('Five', 'avedon_theme_options'), 'six' => __('Six', 'avedon_theme_options'), 'none' => __('None', 'avedon_theme_options') ); $sharing_array = array( 'twitter' => __('Add Twitter Button', 'avedon_theme_options'), 'googleplus' => __('Add Google+ Button', 'avedon_theme_options'), 'facebook' => __('Add Facebook Button', 'avedon_theme_options') ); $superopts_array = array( 'autoplay' => __('Autoplay Images', 'avedon_theme_options'), 'randomimgs' => __('Random Order', 'avedon_theme_options'), 'scrollarrows' => __('Scrolling Arrows', 'avedon_theme_options'), 'slidecount' => __('Slide Counter', 'avedon_theme_options'), 'slidecaption' => __('Slide Caption', 'avedon_theme_options'), 'slidelist' => __('Nav Dots', 'avedon_theme_options'), 'progbar' => __('Progress Bar', 'avedon_theme_options') ); // Multicheck Sharing Defaults $sharing_defaults = array( 'twitter' => '1', 'googleplus' => '1', 'facebook' => '1' ); $superopts_defaults = array( 'autoplay' => '1', 'randomimgs' => '0', 'scrollarrows' => '0', 'slidecount' => '0', 'slidecaption' => '0', 'slidelist' => '1', 'progbar' => '0' ); // Typography Defaults $typography_defaults = array( 'size' => '18px', 'face' => 'arial', 'style' => 'bold', 'color' => '#0088CC' ); // Typography Options $typography_options = array( 'sizes' => array( '6','12','14','16','20' ), 'faces' => array( 'Helvetica Neue' => 'Helvetica Neue','Arial' => 'Arial' ), 'styles' => array( 'normal' => 'Normal','bold' => 'Bold' ), 'color' => false ); // Pull all the categories into an array $options_categories = array(); $options_categories_obj = get_categories(); foreach ($options_categories_obj as $category) { $options_categories[$category->cat_ID] = $category->cat_name; } // Pull all tags into an array $options_tags = array(); $options_tags_obj = get_tags(); foreach ( $options_tags_obj as $tag ) { $options_tags[$tag->term_id] = $tag->name; } // Pull all the pages into an array $options_pages = array(); $options_pages_obj = get_pages('sort_column=post_parent,menu_order'); $options_pages[''] = 'Select a page:'; foreach ($options_pages_obj as $page) { $options_pages[$page->ID] = $page->post_title; } $typography_mixed_fonts = array_merge( options_typography_get_os_fonts() , options_typography_get_google_fonts() ); asort($typography_mixed_fonts); // If using image radio buttons, define a directory path $imagepath = get_template_directory_uri() . '/inc/images/'; $options = array(); $options[] = array( 'name' => __('Basic Settings', 'avedon_theme_options'), 'type' => 'heading'); $options[] = array( 'name' => __('Primary Logo', 'avedon_theme_options'), 'desc' => __('Logo goes in the top left and is cropped to 30px tall (transparent .png is preferred). ', 'avedon_theme_options'), 'id' => 'primary_logo', 'type' => 'upload'); $options[] = array( 'name' => __('Navbar Attachment', 'avedon_theme_options'), 'desc' => __('Select the placement of your primary menu.', 'avedon_theme_options'), 'id' => 'navbar_attachment', 'std' => 'navbar-fixed-top', 'type' => 'select', 'options' => $navbar_attachments); $options[] = array( 'name' => __('Header / Footer Background Color', 'avedon_theme_options'), 'desc' => __('Select the background color for the top menu, call to action, and footer.', 'avedon_theme_options'), 'id' => 'header_color', 'type' => 'color' ); $options[] = array( 'name' => __('Homepage Header Text', 'avedon_theme_options'), 'desc' => __('Greet your visitors (Homepage H1 text).', 'avedon_theme_options'), 'id' => 'headertext', 'std' => 'Greetings and welcome to our website...', 'type' => 'text'); $options[] = array( 'name' => 'Menu Text', 'desc' => 'Google fonts mixed with system fonts.', 'id' => 'menu_font', 'std' => array( 'size' => '16px', 'face' => 'Arial, serif', 'color' => '#757575'), 'type' => 'typography', 'options' => array( 'faces' => $typography_mixed_fonts, 'styles' => false ) ); $options[] = array( 'name' => 'Header Text', 'desc' => 'Set the primary header font.', 'id' => 'header_font', 'std' => array( 'size' => '18px', 'face' => 'Arial, serif', 'color' => '#4BAAD3'), 'type' => 'typography', 'options' => array( 'faces' => $typography_mixed_fonts, 'styles' => false ) ); $options[] = array( 'name' => __('General Link Color', 'avedon_theme_options'), 'desc' => __('Set the color of your content links.', 'avedon_theme_options'), 'id' => 'link_color', 'type' => 'color' ); $options[] = array( 'name' => __('Button Text Color', 'avedon_theme_options'), 'desc' => __('Set the color of text on your buttons.', 'avedon_theme_options'), 'id' => 'button_text_color', 'type' => 'color' ); $options[] = array( 'name' => "Invert Colors", 'desc' => "Invert the white and black portions of the site layout. (Light to dark).", 'id' => "invert_color", 'std' => "color-light", 'type' => "images", 'options' => array( 'color-light' => $imagepath . 'avedon-light.jpg', 'color-dark' => $imagepath . 'avedon-dark.jpg') ); $options[] = array( 'name' => __('Middle Background Color', 'avedon_theme_options'), 'desc' => __('Select the background color for your middle widget content.', 'avedon_theme_options'), 'id' => 'middle_color', 'std' => '#4BAAD3', 'type' => 'color' ); $options[] = array( 'name' => __('Middle Text Color', 'avedon_theme_options'), 'desc' => __('Set the color of your middle text.', 'avedon_theme_options'), 'id' => 'middle_text_color', 'type' => 'color' ); $options[] = array( 'name' => __('Bottom Background Color', 'avedon_theme_options'), 'desc' => __('Select the background color for your bottom content.', 'avedon_theme_options'), 'id' => 'bottom_color', 'std' => '#212121', 'type' => 'color' ); $options[] = array( 'name' => __('Bottom Text Color', 'avedon_theme_options'), 'desc' => __('Set the color of your middle text.', 'avedon_theme_options'), 'id' => 'bottom_text_color', 'type' => 'color' ); $options[] = array( 'name' => __('Footer Text', 'avedon_theme_options'), 'desc' => __('Include your footer text.', 'avedon_theme_options'), 'id' => 'footer_text', 'std' => 'WordPress.com', 'type' => 'text'); $options[] = array( 'name' => __('Footer Text Color', 'avedon_theme_options'), 'desc' => __('Set the color of your footer text.', 'avedon_theme_options'), 'id' => 'footer_text_color', 'type' => 'color' ); $options[] = array( 'name' => __('Favicon and Apple Touch Icons', 'avedon_theme_options'), 'desc' => __('Include favicon and apple touch icons. (Replace favicon.ico and apple_touch_icon.png files with your own icons)', 'avedon_theme_options'), 'id' => 'include_metaicons', 'std' => '0', 'type' => 'checkbox'); $options[] = array( 'name' => __('Include Full Bootstrap Javascript', 'avedon_theme_options'), 'desc' => __('Include Full Bootstrap Javascript (otherwise only the dropmenu script is loaded).', 'avedon_theme_options'), 'id' => 'include_fullbootjava', 'std' => '1', 'type' => 'checkbox'); $options[] = array( 'name' => __('404 Text', 'avedon_theme_options'), 'desc' => __('H1 Header for your 404 page.', 'avedon_theme_options'), 'id' => 'fourofour_text', 'std' => 'Oops. Sorry about that...', 'type' => 'text'); $options[] = array( 'name' => __('Meta', 'avedon_theme_options'), 'type' => 'heading'); $options[] = array( 'name' => __('', 'avedon_theme_options'), 'desc' => __('OpenGraph Meta applies to your posts. To learn more about OpenGraph please refer to http://ogp.me/ or Facebooks integrations at http://developers.facebook.com/docs/opengraph/.', 'avedon_theme_options'), 'type' => 'info'); $options[] = array( 'name' => __('Meta Description', 'avedon_theme_options'), 'desc' => __('og:description - Two sentences that concisely describe the site.', 'avedon_theme_options'), 'id' => 'meta_description', 'type' => 'text'); $options[] = array( 'name' => __('Meta Default Image', 'avedon_theme_options'), 'desc' => __('og:image - Set your site image.', 'avedon_theme_options'), 'id' => 'meta_defaultimage', 'type' => 'upload'); $options[] = array( 'name' => __('Google Site Verification', 'avedon_theme_options'), 'desc' => __('Enter Verification Meta.', 'avedon_theme_options'), 'id' => 'google_site_verification', 'type' => 'text'); $options[] = array( 'name' => __('Bing Site Verification', 'avedon_theme_options'), 'desc' => __('Enter Verification Meta', 'avedon_theme_options'), 'id' => 'bing_site_verification', 'type' => 'text'); $options[] = array( 'name' => __('Google Analytics ID', 'avedon_theme_options'), 'desc' => __('From Analytics / Profiles (ex: UA-XXXXXXXX-X)', 'avedon_theme_options'), 'id' => 'tracking_code', 'type' => 'text'); $options[] = array( 'name' => __('Google Publisher ID', 'avedon_theme_options'), 'desc' => __('Link your Google Page', 'avedon_theme_options'), 'id' => 'google_publisher', 'type' => 'text'); $options[] = array( 'name' => __('Include FB / OG tag', 'avedon_theme_options'), 'desc' => __('Include Facebook and OpenGraph tags in header (Required for proper meta inclusion, will cause validation error but no additional impact).', 'avedon_theme_options'), 'id' => 'include_ogtag', 'std' => '0', 'type' => 'checkbox'); $options[] = array( 'name' => __('Facebook App ID', 'avedon_theme_options'), 'desc' => __('fb:app_id - Includes javascript to enable Facebook Social Plugins. Only enable if using these plugins. (ex: 1234567890)', 'avedon_theme_options'), 'id' => 'meta_appid', 'type' => 'text'); $options[] = array( 'name' => __('Facebook Admins', 'avedon_theme_options'), 'desc' => __('fb:admins - Only enable if using these plugins. (ex: 1234567890)', 'avedon_theme_options'), 'id' => 'meta_fbadmins', 'type' => 'text'); $options[] = array( 'name' => __('Social', 'avedon_theme_options'), 'type' => 'heading'); $options[] = array( 'name' => __('Enable Sharing Buttons', 'avedon_theme_options'), 'desc' => __('Click here to load the javascript for sharing buttons (Twitter, Google+, and Facebook).', 'avedon_theme_options'), 'id' => 'show_sharingarray', 'type' => 'checkbox'); $options[] = array( 'name' => __('Social Sharing', 'avedon_theme_options'), 'desc' => __('Add your sharing buttons.', 'avedon_theme_options'), 'id' => 'sharing_array', 'std' => $sharing_defaults, // These items get checked by default 'type' => 'multicheck', 'class' => 'hidden', 'options' => $sharing_array); $options[] = array( 'name' => __('Enable Social Icons', 'avedon_theme_options'), 'desc' => __('Click here to enable links to your social profiles.', 'avedon_theme_options'), 'id' => 'social_icons', 'type' => 'checkbox'); $options[] = array( 'name' => __('Twitter Link', 'avedon_theme_options'), 'desc' => __('Twitter Link', 'avedon_theme_options'), 'id' => 'twitter_uid', 'std' => 'https://twitter.com/haeckdesign', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Google+ Link', 'avedon_theme_options'), 'desc' => __('Google+ Link', 'avedon_theme_options'), 'id' => 'googleplus_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Facebook Link', 'avedon_theme_options'), 'desc' => __('Facebook Link', 'avedon_theme_options'), 'id' => 'facebook_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('StumbleUpon Link', 'avedon_theme_options'), 'desc' => __('StumbleUpon Link', 'avedon_theme_options'), 'id' => 'stumble_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Pinterest Link', 'avedon_theme_options'), 'desc' => __('Pinterest Link', 'avedon_theme_options'), 'id' => 'pinterest_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Flickr Link', 'avedon_theme_options'), 'desc' => __('Flickr Link', 'avedon_theme_options'), 'id' => 'flickr_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Instagram Link', 'avedon_theme_options'), 'desc' => __('Instagram Link', 'avedon_theme_options'), 'id' => 'instagram_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Foursquare Link', 'avedon_theme_options'), 'desc' => __('Foursquare Link', 'avedon_theme_options'), 'id' => 'foursquare_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Youtube Link', 'avedon_theme_options'), 'desc' => __('Youtube Link', 'avedon_theme_options'), 'id' => 'youtube_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Vimeo Link', 'avedon_theme_options'), 'desc' => __('Vimeo Link', 'avedon_theme_options'), 'id' => 'vimeo_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('LinkedIn Link', 'avedon_theme_options'), 'desc' => __('LinkedIn Link', 'avedon_theme_options'), 'id' => 'linkedin_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Dribbble Link', 'avedon_theme_options'), 'desc' => __('Dribbble Link', 'avedon_theme_options'), 'id' => 'dribbble_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Forrst Link', 'avedon_theme_options'), 'desc' => __('Forrst Link', 'avedon_theme_options'), 'id' => 'forrst_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Wordpress Link', 'avedon_theme_options'), 'desc' => __('Wordpress Link', 'avedon_theme_options'), 'id' => 'wordpress_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Soundcloud Link', 'avedon_theme_options'), 'desc' => __('Soundcloud Link', 'avedon_theme_options'), 'id' => 'soundcloud_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('LastFM Link', 'avedon_theme_options'), 'desc' => __('LastFM Link', 'avedon_theme_options'), 'id' => 'lastfm_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('RSS Link', 'avedon_theme_options'), 'desc' => __('RSS Link', 'avedon_theme_options'), 'id' => 'rss_uid', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Email Icon', 'avedon_theme_options'), 'desc' => __('Email address for the mobile menubar and metadata. (ex: noreply@email.com)', 'avedon_theme_options'), 'id' => 'emailicon', 'type' => 'text'); $options[] = array( 'name' => __('Map Icon', 'avedon_theme_options'), 'desc' => __('Map link for the mobile menubar and metadata. (ex: http://shortmaplink.com)', 'avedon_theme_options'), 'id' => 'mapicon', 'type' => 'text'); $options[] = array( 'name' => __('Phone Icon', 'avedon_theme_options'), 'desc' => __('Phone number link for the mobile menubar (w/ dashes). (ex: 1-555-867-5309)', 'avedon_theme_options'), 'id' => 'phoneicon', 'type' => 'text'); $options[] = array( 'name' => __('Background', 'avedon_theme_options'), 'type' => 'heading'); $options[] = array( 'name' => __('', 'avedon_theme_options'), 'desc' => __('If using a single image or color please use the built in background editor. If you prefer using multiple images be sure to enable SuperSize below.', 'avedon_theme_options'), 'type' => 'info'); $options[] = array( 'name' => __('Enable Supersize', 'avedon_theme_options'), 'desc' => __('Click here to enable Supersize.', 'avedon_theme_options'), 'id' => 'show_supersize', 'type' => 'checkbox'); $options[] = array( 'name' => __('Transition Effect', 'avedon_theme_options'), 'desc' => __('Select your image transition.', 'avedon_theme_options'), 'id' => 'super_effects', 'std' => '1', 'type' => 'select', 'class' => 'hidden', 'options' => $supereffects); $options[] = array( 'name' => __('Transition Slide Interval', 'avedon_theme_options'), 'desc' => __('Slide transition time (in ms).', 'avedon_theme_options'), 'id' => 'super_translideint', 'class' => 'hidden', 'std' => '6000', 'type' => 'text'); $options[] = array( 'name' => __('Transition Speed', 'avedon_theme_options'), 'desc' => __('Slide time (in ms).', 'avedon_theme_options'), 'id' => 'super_transpeed', 'class' => 'hidden', 'std' => '3000', 'type' => 'text'); $options[] = array( 'name' => __('Supersize Options', 'avedon_theme_options'), 'desc' => __('Select your Supersize additions.', 'avedon_theme_options'), 'id' => 'super_array', 'class' => 'hidden', 'std' => $superopts_defaults, 'type' => 'multicheck', 'options' => $superopts_array); $options[] = array( 'name' => __('Supersize Images', 'avedon_theme_options'), 'desc' => __('Select the number of rotating background images. Save options to populate images below and ensure Supersize is enabled to display.', 'avedon_theme_options'), 'id' => 'radio_images', 'type' => 'radio', 'options' => $images_number); $options[] = array( 'name' => __('Supersize Image One', 'avedon_theme_options'), 'desc' => __('First Supersize image.', 'avedon_theme_options'), 'id' => 'radio_image_one', 'class' => 'hidden', 'type' => 'upload'); $options[] = array( 'name' => __('', 'avedon_theme_options'), 'desc' => __('Supersize Image One - Credit', 'avedon_theme_options'), 'id' => 'radio_image_one_credit', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Supersize Image Two', 'avedon_theme_options'), 'desc' => __('Second Supersize image.', 'avedon_theme_options'), 'id' => 'radio_image_two', 'class' => 'hidden', 'type' => 'upload'); $options[] = array( 'name' => __('', 'avedon_theme_options'), 'desc' => __('Supersize Image Two - Credit', 'avedon_theme_options'), 'id' => 'radio_image_two_credit', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Supersize Image - Three', 'avedon_theme_options'), 'desc' => __('Third Supersize image.', 'avedon_theme_options'), 'id' => 'radio_image_three', 'class' => 'hidden', 'type' => 'upload'); $options[] = array( 'name' => __('', 'avedon_theme_options'), 'desc' => __('Supersize Image Three - Credit', 'avedon_theme_options'), 'id' => 'radio_image_three_credit', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Supersize Image - Four', 'avedon_theme_options'), 'desc' => __('Fourth Supersize image.', 'avedon_theme_options'), 'id' => 'radio_image_four', 'class' => 'hidden', 'type' => 'upload'); $options[] = array( 'name' => __('', 'avedon_theme_options'), 'desc' => __('Supersize Image Four - Credit', 'avedon_theme_options'), 'id' => 'radio_image_four_credit', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Supersize Image - Five', 'avedon_theme_options'), 'desc' => __('Fifth Supersize image.', 'avedon_theme_options'), 'id' => 'radio_image_five', 'class' => 'hidden', 'type' => 'upload'); $options[] = array( 'name' => __('', 'avedon_theme_options'), 'desc' => __('Supersize Image Five - Credit', 'avedon_theme_options'), 'id' => 'radio_image_five_credit', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('Supersize Image - Six', 'avedon_theme_options'), 'desc' => __('Sixth Supersize image.', 'avedon_theme_options'), 'id' => 'radio_image_six', 'class' => 'hidden', 'type' => 'upload'); $options[] = array( 'name' => __('', 'avedon_theme_options'), 'desc' => __('Supersize Image Six - Credit', 'avedon_theme_options'), 'id' => 'radio_image_six_credit', 'class' => 'hidden', 'type' => 'text'); $options[] = array( 'name' => __('', 'avedon_theme_options'), 'desc' => __('Supersize is a fullsize background rotator. Be sure that no other backgrounds are set and include your images in sequential order as you would like them to appear. The theme will check to ensure Supersize scripts are enabled, read the number of images, then pull them and rotate as your settings determine.', 'avedon_theme_options'), 'type' => 'info'); $options[] = array( 'name' => __('About', 'avedon_theme_options'), 'type' => 'heading'); $options[] = array( 'name' => __('Avedon Wordpress Theme', 'avedon_theme_options'), 'desc' => __('
Avedon is a Wordpress Theme designed to utilize a lot of technologies that much brighter folks have built. Any and all respect should be given to them. Haeck Design is always available for projects, but since it is a theme - support isnt guaranteed. We will be opening up support section soon, but if you would like to get the latest revisions delivered directly to your inbox simply make a small donation and you will receive releases three weeks before the public.
Tired of sorting through compressed files? Wish you could add some additional background images? Feel like saving some time... or just support a fellow nerd? Buy a premium version of the Avedon theme and get them all! Visit our Demo Page @ http://demo.haeckdesign.com/avedon and just Click Buy.