From bc699974a0118b03add596177da6bdf17e2e0bee Mon Sep 17 00:00:00 2001 From: Robin Cornett Date: Wed, 10 Dec 2014 19:31:53 -0500 Subject: [PATCH] add help text --- .../class-displayfeaturedimagegenesis-settings.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/includes/class-displayfeaturedimagegenesis-settings.php b/includes/class-displayfeaturedimagegenesis-settings.php index e241d37..7b10af5 100644 --- a/includes/class-displayfeaturedimagegenesis-settings.php +++ b/includes/class-displayfeaturedimagegenesis-settings.php @@ -357,6 +357,11 @@ class Display_Featured_Image_Genesis_Settings { '

' . __( 'Move Excerpts/Archive Descriptions', 'display-featured-image-genesis' ) . '

' . '

' . __( 'By default, archive descriptions (set on the Genesis Archive Settings pages) show below the Default Featured Image, while the archive title displays on top of the image. If you check this box, all headlines, descriptions, and optional excerpts will display in a box overlaying the Featured Image.', 'display-featured-image-genesis' ) . '

'; + $feed_help = + '

' . __( 'Add Featured Image to Feed?', 'display-featured-image-genesis' ) . '

' . + '

' . __( 'This plugin does not add the Featured Image to your content, so normally you will not see your Featured Image in the feed. If you select this option, however, the Featured Image (if it is set) will be added to each entry in your RSS feed.', 'display-featured-image-genesis' ) . '

' . + '

' . __( 'If your RSS feed is set to Full Text, the Featured Image will be added to the entry content. If it is set to Summary, the Featured Image will be added to the excerpt instead.', 'display-featured-image-genesis' ) . '

'; + $screen->add_help_tab( array( 'id' => 'displayfeaturedimage_less_header-help', @@ -382,6 +387,12 @@ class Display_Featured_Image_Genesis_Settings { 'content' => $excerpts_help, ) ); + $screen->add_help_tab( array( + 'id' => 'displayfeaturedimage_feed-help', + 'title' => __( 'RSS Feed', 'display-featured-image-genesis' ), + 'content' => $feed_help, + ) ); + } /**