function zilla_post_options()
{
    $post_options['description'] = __('Here you can configure how you would like your posts to function. THIS NEEDS TO BE FINISHED/EDITED WITH A RELEVANT DESC BEFORE THEME LAUNCH.', 'zilla');
    $post_options[] = array('title' => __('Show Featured Image', 'zilla'), 'desc' => __('Check this to show the featured image at the beginning of the post.', 'zilla'), 'type' => 'checkbox', 'id' => 'post_show_featured_image');
    $post_options[] = array('title' => __('Show Author Bios', 'zilla'), 'desc' => __('Check this to show an author bio panel on each post page.', 'zilla'), 'type' => 'checkbox', 'id' => 'post_show_author_bios');
    zilla_add_framework_page('Post Options', $post_options, 15);
}
function zilla_styling_options()
{
    $styling_options['description'] = __('Configure the visual appearance of you theme by selecting a stylesheet if applicable, choosing your overall layout and inserting any custom CSS necessary.', 'zilla');
    $styling_options[] = array('title' => __('Accent Color', 'zilla'), 'desc' => __('Change this color to specify the "accent" color for your site.', 'zilla'), 'type' => 'color', 'id' => 'style_accent_color', 'val' => '#f26c4f');
    $styling_options[] = array('title' => __('Main Layout', 'zilla'), 'desc' => __('Select main content and sidebar alignment.', 'zilla'), 'type' => 'radio', 'id' => 'style_main_layout', 'val' => 'layout-2cr', 'options' => array('layout-2cr' => __('2 Columns (right)', 'zilla'), 'layout-2cl' => __('2 Columns (left)', 'zilla')));
    $styling_options[] = array('title' => __('Custom CSS', 'zilla'), 'desc' => __('Quickly add some CSS to your theme by adding it to this block.', 'zilla'), 'type' => 'textarea', 'id' => 'style_custom_css');
    zilla_add_framework_page('Styling Options', $styling_options, 10);
}
function zilla_general_settings()
{
    $general_settings['description'] = 'Control and configure the general setup of your theme. Upload your preferred logo, setup your feeds and insert your analytics tracking code.';
    $general_settings[] = array('title' => __('Plain Text Logo', 'zilla'), 'desc' => __('Check this box to enable a plain text logo rather than upload an image. Will use your site name.', 'zilla'), 'type' => 'checkbox', 'id' => 'general_text_logo');
    $general_settings[] = array('title' => __('Custom Logo Upload', 'zilla'), 'desc' => __('Upload a logo for your theme.', 'zilla'), 'type' => 'file', 'id' => 'general_custom_logo', 'val' => 'Upload Image');
    $general_settings[] = array('title' => __('Custom Favicon Upload', 'zilla'), 'desc' => __('Upload a 16px x 16px Png/Gif image that will represent your website\'s favicon.', 'zilla'), 'type' => 'file', 'id' => 'general_custom_favicon', 'val' => 'Upload Image');
    $general_settings[] = array('title' => __('Default Blog Page Title', 'zilla'), 'desc' => __('Please enter a default blog page title to be used.', 'zilla'), 'type' => 'text', 'id' => 'general_default_page_title');
    $general_settings[] = array('title' => __('Default Blog Page Caption', 'zilla'), 'desc' => __('Please enter a default blog page caption to be used.', 'zilla'), 'type' => 'text', 'id' => 'general_default_page_caption');
    $general_settings[] = array('title' => __('Contact Form Email Address', 'zilla'), 'desc' => __('Enter the email address where you\'d like to receive emails from the contact form, or leave blank to use admin email.', 'zilla'), 'type' => 'text', 'id' => 'general_contact_email');
    $general_settings[] = array('title' => __('FeedBurner URL', 'zilla'), 'desc' => __('Enter your full FeedBurner URL (or any other preferred feed URL) if you wish to use FeedBurner over the standard WordPress feed e.g. http://feeds.feedburner.com/yoururlhere', 'zilla'), 'type' => 'text', 'id' => 'general_feedburner_url');
    $general_settings[] = array('title' => __('Tracking Code', 'zilla'), 'desc' => __('Paste your Google Analytics (or other) tracking code here. It will be inserted before the closing body tag of your theme.', 'zilla'), 'type' => 'textarea', 'id' => 'general_tracking_code');
    zilla_add_framework_page('General Settings', $general_settings, 5);
}