Files

88 lines
3.4 KiB
PHP
Raw Permalink Normal View History

2019-05-12 17:40:05 -04:00
<?php
2019-05-14 14:25:46 -04:00
$large = displayfeaturedimagegenesis_get()->minimum_backstretch_width();
2019-05-12 17:40:05 -04:00
return array(
array(
2019-05-19 07:07:23 -04:00
'id' => 'default',
'title' => __( 'Default Featured Image', 'display-featured-image-genesis' ),
'section' => 'default',
'type' => 'image',
2019-05-12 17:40:05 -04:00
),
array(
'id' => 'always_default',
'title' => __( 'Always Use Default', 'display-featured-image-genesis' ),
'section' => 'default',
'label' => __( 'Always use the default image, even if a featured image is set.', 'display-featured-image-genesis' ),
'description' => sprintf(
/* translators: placeholder is a number equivalent to the width of the site's Large image (Settings > Media) */
2019-05-12 17:40:05 -04:00
esc_html__( 'If you would like to use a default image for the featured image, upload it here. Must be at least %1$s pixels wide.', 'display-featured-image-genesis' ),
absint( $large + 1 )
),
'type' => 'checkbox',
),
array(
2019-05-19 07:07:23 -04:00
'id' => 'image_size',
'title' => __( 'Preferred Image Size', 'display-featured-image-genesis' ),
'section' => 'main',
'choices' => apply_filters(
2019-05-12 17:40:05 -04:00
'displayfeaturedimagegenesis_image_size_choices',
array(
2019-10-23 18:47:15 -04:00
'2048x2048' => __( 'Banner (default)', 'display-featured-image-genesis' ),
'large' => __( 'Large', 'display-featured-image-genesis' ),
2019-05-12 17:40:05 -04:00
)
),
2019-05-19 07:07:23 -04:00
'type' => 'select',
2019-05-12 17:40:05 -04:00
),
array(
2019-05-19 07:07:23 -04:00
'id' => 'exclude_front',
'title' => __( 'Skip Front Page', 'display-featured-image-genesis' ),
'section' => 'main',
'label' => __( 'Do not show the Featured Image on the Front Page of the site.', 'display-featured-image-genesis' ),
'type' => 'checkbox',
2019-05-12 17:40:05 -04:00
),
array(
2019-05-19 07:07:23 -04:00
'id' => 'keep_titles',
'title' => __( 'Do Not Move Titles', 'display-featured-image-genesis' ),
'section' => 'main',
'label' => __( 'Do not move the titles to overlay the banner featured image.', 'display-featured-image-genesis' ),
'type' => 'checkbox',
2019-05-12 17:40:05 -04:00
),
array(
2019-05-19 07:07:23 -04:00
'id' => 'move_excerpts',
'title' => __( 'Move Excerpts/Archive Descriptions', 'display-featured-image-genesis' ),
'section' => 'main',
'label' => __( 'Move excerpts (if used) on single pages and move archive/taxonomy descriptions to overlay the Featured Image.', 'display-featured-image-genesis' ),
'type' => 'checkbox',
2019-05-12 17:40:05 -04:00
),
array(
2019-05-19 07:07:23 -04:00
'id' => 'is_paged',
'title' => __( 'Show Featured Image on Subsequent Blog Pages', 'display-featured-image-genesis' ),
'section' => 'archives',
'label' => __( 'Show featured image on pages 2+ of blogs and archives.', 'display-featured-image-genesis' ),
'type' => 'checkbox',
2019-05-12 17:40:05 -04:00
),
array(
2019-05-19 07:07:23 -04:00
'id' => 'feed_image',
'title' => __( 'Add Featured Image to Feed?', 'display-featured-image-genesis' ),
'section' => 'archives',
'label' => __( 'Optionally, add the featured image to your RSS feed.', 'display-featured-image-genesis' ),
'type' => 'checkbox',
2019-05-12 17:40:05 -04:00
),
array(
2019-05-19 07:07:23 -04:00
'id' => 'thumbnails',
'title' => __( 'Archive Thumbnails', 'display-featured-image-genesis' ),
'section' => 'archives',
'label' => __( 'Use term/post type fallback images for content archives?', 'display-featured-image-genesis' ),
'type' => 'checkbox',
2019-05-12 17:40:05 -04:00
),
array(
'id' => 'shortcodes',
'title' => __( 'Add Shortcode Buttons', 'display-featured-image-genesis' ),
'type' => 'checkbox',
'section' => 'main',
'label' => __( 'Add optional shortcode buttons to the post editor', 'display-featured-image-genesis' ),
'skip' => true,
2019-05-12 17:40:05 -04:00
),
);