浏览代码

Hide the footer widget area too.

Kjell Reigstad 4 年之前
父节点
当前提交
bfeedb6038
共有 2 个文件被更改,包括 4 次插入3 次删除
  1. 2 1
      varia/inc/style-wpcom.css
  2. 2 2
      varia/inc/wpcom.php

+ 2 - 1
varia/inc/style-wpcom.css

@@ -19,7 +19,8 @@
  /**
  * Hide footer navigation on the homepage
  */
-.home.page.hide-homepage-footer .footer-navigation {
+.home.page.hide-homepage-footer .footer-navigation,
+.home.page.hide-homepage-footer .widget-area {
 	display: none;
 }
 

+ 2 - 2
varia/inc/wpcom.php

@@ -77,8 +77,8 @@ function varia_wpcom_customize_update( $wp_customize ) {
 	) );
 
 	$wp_customize->add_control( 'hide_site_footer', array(
-		'label'		  => esc_html__( 'Hide the Site Footer Menu', 'varia' ),
-		'description' => esc_html__( 'Check to hide the site menu in the footer, if your homepage is set to display a static page.', 'varia' ),
+		'label'		  => esc_html__( 'Hide the Site Footer Menu & Widgets', 'varia' ),
+		'description' => esc_html__( 'Check to hide the site menu & widgets in the footer, if your homepage is set to display a static page.', 'varia' ),
 		'section'	  => 'static_front_page',
 		'priority'	  => 10,
 		'type'		  => 'checkbox',