'', 'image' => '', 'repeat' => 'repeat', 'position' => 'top center', 'attachment'=>'scroll' ); // Typography Defaults $typography_defaults = array( 'size' => '15px', 'face' => 'georgia', 'style' => 'bold', 'color' => '#bada55' ); // 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; } // If using image radio buttons, define a directory path $columns = array('two_col'=>__('Two Columns','beyondmagazine'), 'three_col'=>__('Three Columns','beyondmagazine')); $options = array(); $options[] = array( 'name' => __('Basic Options', 'options_check'), 'type' => 'heading'); $options[] = array( 'name' => __('Favicon Upload', 'options_check'), 'desc' => __('Upload Your Favicon icon here. Please upload a 16x16 icon.', 'beyondmagazine'), 'id' => 'favicon_upload', 'type' => 'upload'); $options[] = array( 'name' => __('Choose Post Layout)', 'options_check'), 'desc' => __('Choose two column or three column for posts layout.', 'beyondmagazine'), 'id' => 'post_layout', 'std' => 'two_col', 'type' => 'radio', 'options' => $columns); return $options; }