diff --git a/includes/class-displayfeaturedimagegenesis-settings.php b/includes/class-displayfeaturedimagegenesis-settings.php index 00a6f50..9e68680 100644 --- a/includes/class-displayfeaturedimagegenesis-settings.php +++ b/includes/class-displayfeaturedimagegenesis-settings.php @@ -242,7 +242,7 @@ class Display_Featured_Image_Genesis_Settings { */ public function keep_titles() { echo ''; - echo ''; + echo ''; } /** @@ -564,6 +564,10 @@ class Display_Featured_Image_Genesis_Settings { esc_url( 'https://github.com/robincornett/display-featured-image-genesis#how-do-i-stop-the-featured-image-action-from-showing-on-my-custom-post-types' ) ) . '

'; + $keeptitles_help = + '

' . __( 'Do Not Move Titles', 'display-featured-image-genesis' ) . '

' . + '

' . __( 'This setting applies to the backstretch Featured Image only. It allows you to keep the post/page titles in their original location, instead of overlaying the new image.', 'display-featured-image-genesis' ) . '

'; + $excerpts_help = '

' . __( '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' ) . '

'; @@ -598,6 +602,12 @@ class Display_Featured_Image_Genesis_Settings { 'content' => $skipfront_help, ) ); + $screen->add_help_tab( array( + 'id' => 'displayfeaturedimage_keep_titles-help', + 'title' => __( 'Do Not Move Titles', 'display-featured-image-genesis' ), + 'content' => $keeptitles_help, + ) ); + $screen->add_help_tab( array( 'id' => 'displayfeaturedimage_excerpts-help', 'title' => __( 'Move Excerpts', 'display-featured-image-genesis' ),