From 4ab3f9fc3a77400357939394e58c1bec79f046e7 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Wed, 2 Nov 2016 19:08:11 +0000 Subject: [PATCH] Twenty Seventeen: Unifies the labels for front page sections Front page sesctions # Content were labelled in Customizer Theme Options but the preview called it Panel # placeholder. This unifies that. Props Clorith, ahortin, celloexpressions, davidakennedy Fixes #38567 git-svn-id: https://develop.svn.wordpress.org/trunk@39094 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyseventeen/inc/template-tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentyseventeen/inc/template-tags.php b/src/wp-content/themes/twentyseventeen/inc/template-tags.php index 2b0879ba4b..5367e60a48 100644 --- a/src/wp-content/themes/twentyseventeen/inc/template-tags.php +++ b/src/wp-content/themes/twentyseventeen/inc/template-tags.php @@ -151,7 +151,7 @@ function twentyseventeen_front_page_section( $partial = null, $id = 0 ) { wp_reset_postdata(); } elseif ( is_customize_preview() ) { // The output placeholder anchor. - echo '
' . sprintf( __( 'Panel %1$s Placeholder', 'twentyseventeen' ), $id ) . '
'; + echo '
' . sprintf( __( 'Front Page Section %1$s Placeholder', 'twentyseventeen' ), $id ) . '
'; } }