__( 'Post Title → Post Date', 'autofocus' ),
'datetitle' => __( 'Post Date → Post Title', 'autofocus' ),
'title' => __( 'Post Title only', 'autofocus' ),
'date' => __( 'Post Date only', 'autofocus' )
);
// Image Display Choices
$autofocus_image_display_choices = array(
'autofocus-full-post-thumbnail' => $autofocus_imagepath . 'full-img.gif',
'autofocus-fixed-post-thumbnail' => $autofocus_imagepath . 'fixed-img.gif'
);
$autofocus_options= array();
// Display options
$autofocus_options[] = array( "name" => __('General Options', 'autofocus'),
"type" => "heading");
$autofocus_options[] = array( "name" => "Text Color",
"desc" => __('Change the color of text, borders and link hover states by entering a HEX color number. (ie: #999999)','autofocus'),
"id" => $autofocus_shortname . "_text_color",
"std" => "999999",
"type" => "color");
$autofocus_options[] = array( "name" => __('Link Color','autofocus'),
"desc" => __('Change the color of anchor links by entering a HEX color number. (ie: #00CCFF)','autofocus'),
"id" => $autofocus_shortname . "_link_color",
"std" => "00CCFF",
"type" => "color");
$autofocus_options[] = array( "name" => __('Background Color','autofocus'),
"desc" => __('Change the background color by entering a HEX color number. (ie: #FFFFFF)','autofocus'),
"id" => $autofocus_shortname . "_bg_color",
"std" => "FFFFFF",
"type" => "color");
$autofocus_options[] = array( "name" => __('Photo Background Color','autofocus'),
"desc" => __('Change the background color of Portrait (narrow) images on Single Pages by entering a HEX color number. (ie: #F0F0F0)','autofocus'),
"id" => $autofocus_shortname . "_photo_color",
"std" => "F0F0F0",
"type" => "color");
$autofocus_options[] = array( "name" => __('Image Display', 'autofocus'),
"desc" => __('Choose how to display images and galleries on single posts. Full Shows images on single posts at 800 pixels wide with a flexible height. (IMPORTANT: When using the slider option, slides do not rotate automatically). Fixed Constrains images on single posts to fit in a 800px × 600px display area.','autofocus'),
"id" => $autofocus_shortname . "_image_display",
"std" => "autofocus-full-post-thumbnail",
"type" => "images",
"options" => $autofocus_image_display_choices);
$autofocus_options[] = array( "name" => __('Remove First Image from Post Content?', 'autofocus'),
"desc" => __('With AutoFocus 2.0, you do not need to insert your images into the post content. All you need to do is attach them to the post. However, if you are migrating from another theme, you may want to turn this option on which hides the first image of your post so that it isn’t duplicated. Adding a check here will remove that first image.', 'autofocus'),
"id" => $autofocus_shortname . "_hide_first_image",
"std" => TRUE,
"type" => "checkbox");
$autofocus_options[] = array( "name" => __('Post Title & Date Display','autofocus'),
"desc" => __('Post Title → Post Date Shows the Post Title initially. Shows the Post Date on mouse-overs. Post Date → Title Shows the Post Date initially. Shows the Post Title on mouse-overs. Post Title only Shows the Post Title on mouse-overs. Post Date onlyShows the Post Date on mouse-overs. ','autofocus'),
"id" => $autofocus_shortname . "_title_date",
"std" => "titledate",
"type" => "radio",
"options" => $autofocus_date_title_choices);
$autofocus_options[] = array( "name" => __('Show Exif data','autofocus'),
"desc" => __('Add a check here to show the Exif data for your images on attachment pages (WP Gallery Images only).','autofocus'),
"id" => $autofocus_shortname . "_show_exif_data",
"std" => FALSE,
"type" => "checkbox");
return $autofocus_options;
} ?>