ソースを参照

Remove author bio + nav customizer controls.

Kjell Reigstad 4 年 前
コミット
3de86b89f1
1 ファイル変更13 行追加0 行削除
  1. 13 0
      blank-canvas/functions.php

+ 13 - 0
blank-canvas/functions.php

@@ -91,6 +91,19 @@ function blank_canvas_dequeue_parent_scripts() {
 }
 add_action( 'wp_enqueue_scripts', 'blank_canvas_dequeue_parent_scripts', 11 );
 
+function blank_canvas_remove_customizer_settings( $wp_customize ) {
+
+	// Remove the navigation menus Customizer panel.
+	$wp_customize->get_panel( 'nav_menus' )->active_callback = '__return_false';
+
+	// Remove Jetpack's Author Bio setting.
+	if ( function_exists( 'jetpack_author_bio' ) ) {
+		$wp_customize->remove_control( 'jetpack_content_author_bio_title' );
+		$wp_customize->remove_control( 'jetpack_content_author_bio' );
+	}
+}
+add_action( 'customize_register', 'blank_canvas_remove_customizer_settings', 11 );
+
 /**
  * Remove Meta Footer Items.
  */