소스 검색

Merge pull request #2983 from Automattic/blank-canvas/remove-homepage-title-option

Blank Canvas: Remove option to hide page title on the homepage.
Ben Dwyer 4 년 전
부모
커밋
63cdc82cd5
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. 16 0
      blank-canvas/inc/wpcom.php

+ 16 - 0
blank-canvas/inc/wpcom.php

@@ -0,0 +1,16 @@
+<?php
+/**
+ * WordPress.com-specific functions and definitions.
+ *
+ * This file is centrally included from `wp-content/mu-plugins/wpcom-theme-compat.php`.
+ *
+ * @package Blank Canvas
+ */
+
+/**
+ * Remove setting for hiding page title on the homepage.
+ */
+function blank_canvas_wpcom_customize_update( $wp_customize ) {
+	$wp_customize->remove_control( 'hide_front_page_title');
+}
+add_action( 'customize_register', 'blank_canvas_wpcom_customize_update', 11 );