From d22dcb51b0b0e3a3b567bb3c0bfde5fd9bdeddc0 Mon Sep 17 00:00:00 2001
From: Robin Cornett
Date: Tue, 20 Jan 2015 13:20:53 -0500
Subject: [PATCH] clarify keep titles setting/wording
---
.../class-displayfeaturedimagegenesis-settings.php | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
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 ' displaysetting['keep_titles'] ), false ) . ' class="code" />' . __( 'Do not move the titles to overlay the Featured Image.', 'display-featured-image-genesis' ) . ' ';
+ echo ' displaysetting['keep_titles'] ), false ) . ' class="code" />' . __( 'Do not move the titles to overlay the backstretch Featured Image.', 'display-featured-image-genesis' ) . ' ';
}
/**
@@ -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' ),