139 lines
3.5 KiB
PHP
139 lines
3.5 KiB
PHP
<?php
|
|
|
|
// theme options
|
|
$options = array (
|
|
array("type" => "open"),
|
|
|
|
array(
|
|
"id" => "comicpress-disable_comic_frontpage",
|
|
"default" => "no",
|
|
"type" => "comicpress-disable_comic_frontpage"),
|
|
|
|
array(
|
|
"id" => "comicpress-disable_comic_blog_frontpage",
|
|
"default" => "no",
|
|
"type" => "comicpress-disable_comic_blog_frontpage"),
|
|
|
|
array(
|
|
"id" => "comicpress-disable_blog_frontpage",
|
|
"default" => "no",
|
|
"type" => "comicpress-disable_blog_frontpage"),
|
|
|
|
array(
|
|
"id" => "comicpress-custom_css",
|
|
"default" => "",
|
|
"type" => "comicpress-custom_css"),
|
|
|
|
array(
|
|
"id" => "comicpress-cp_theme_style",
|
|
"default" => "standard",
|
|
"type" => "comicpress-cp_theme_style"),
|
|
|
|
array(
|
|
"id" => "comicpress-buy_print_email",
|
|
"default" => "youremail@youremail.com",
|
|
"type" => "comicpress-buy_print_email"),
|
|
|
|
array(
|
|
"id" => "comicpress-buy_print_url",
|
|
"default" => "/shop/",
|
|
"type" => "comicpress-buy_print_url"),
|
|
|
|
array(
|
|
"id" => "comicpress-buy_print_us_amount",
|
|
"default" => "19.95",
|
|
"type" => "comicpress-buy_print_us_amount"),
|
|
|
|
array(
|
|
"id" => "comicpress-buy_print_int_amount",
|
|
"default" => "29.95",
|
|
"type" => "comicpress-buy_print_int_amount"),
|
|
|
|
array(
|
|
"id" => "comicpress-buy_print_us_ship",
|
|
"default" => "4.95",
|
|
"type" => "comicpress-buy_print_us_ship"),
|
|
|
|
array(
|
|
"id" => "comicpress-buy_print_int_ship",
|
|
"default" => "9.95",
|
|
"type" => "comicpress-buy_print_int_ship"),
|
|
|
|
array(
|
|
"id" => "comicpress-transcript_in_posts",
|
|
"default" => "no",
|
|
"type" => "comicpress-transcript_in_posts"),
|
|
|
|
array(
|
|
"id" => "comicpress-enable_widgetarea_use_sidebar_css",
|
|
"default" => "no",
|
|
"type" => "comicpress-enable_widgetarea_use_sidebar_css"),
|
|
|
|
array(
|
|
"id" => "comicpress-contact_in_menubar",
|
|
"default" => "no",
|
|
"type" => "comicpress-contact_in_menubar"),
|
|
|
|
array(
|
|
"id" => "comicpress-disable_extended_comments",
|
|
"default" => "no",
|
|
"type" => "comicpress-disable_extended_comments"),
|
|
|
|
array(
|
|
"id" => "comicpress-enable_custom_image_header",
|
|
"default" => "no",
|
|
"type" => "comicpress-enable_custom_image_header"),
|
|
|
|
array(
|
|
"id" => "comicpress-custom_image_header_width",
|
|
"default" => "780",
|
|
"type" => "comicpress-custom_image_header_width"),
|
|
|
|
array(
|
|
"id" => "comicpress-custom_image_header_height",
|
|
"default" => "120",
|
|
"type" => "comicpress-custom_image_header_height"),
|
|
|
|
array(
|
|
"id" => "comicpress-enable_numbered_pagination",
|
|
"default" => "no",
|
|
"type" => "comicpress-enable_numbered_pagination"),
|
|
|
|
array(
|
|
"id" => "comicpress-disable_page_restraints",
|
|
"default" => "no",
|
|
"type" => "comicpress-disable_page_restraints"),
|
|
|
|
array(
|
|
"id" => "comicpress-enable_dropdown_sidebar",
|
|
"default" => "no",
|
|
"type" => "comicpress-enable_dropdown_sidebar"),
|
|
|
|
array(
|
|
"id" => "comicpress-enable_related_comics",
|
|
"default" => "no",
|
|
"type" => "comicpress-enable_related_comics"),
|
|
|
|
array(
|
|
"id" => "comicpress-enable_related_posts",
|
|
"default" => "no",
|
|
"type" => "comicpress-enable_related_posts"),
|
|
|
|
array(
|
|
"id" => "comicpress-comic_clicks_next",
|
|
"default" => "no",
|
|
"type" => "comicpress-comic_clicks_next"),
|
|
|
|
array(
|
|
"id" => "comicpress-anomaly_says",
|
|
"default" => "no",
|
|
"type" => "comicpress-anomaly_says"),
|
|
|
|
array(
|
|
"id" => "comicpress-disable_css_style_editor",
|
|
"default" => "no",
|
|
"type" => "comicpress-disable_css_style_editor"),
|
|
|
|
array("type" => "close")
|
|
);
|
|
?>
|