浏览代码

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 );