Procházet zdrojové kódy

remove navigation assets

Ben Dwyer před 4 roky
rodič
revize
b89ea2e53c
1 změnil soubory, kde provedl 8 přidání a 1 odebrání
  1. 8 1
      blankie/functions.php

+ 8 - 1
blankie/functions.php

@@ -44,6 +44,13 @@ function blankie_remove_parent_theme_features() {
 }
 add_action( 'after_setup_theme', 'blankie_remove_parent_theme_features', 10 );
 
+function blankie_dequeue_parent_scripts() {
+	// Naviation assets
+	wp_dequeue_script( 'seedlet-primary-navigation-script' );
+	wp_dequeue_style( 'seedlet-style-navigation' );
+}
+add_action( 'wp_enqueue_scripts', 'blankie_dequeue_parent_scripts', 11 );
+
 /**
  * Remove Meta Footer Items.
  */
@@ -79,4 +86,4 @@ endif;
 function blankie_enqueue() {
 	wp_enqueue_style( 'blankie-styles', get_stylesheet_uri() );
 }
-add_action( 'wp_enqueue_scripts', 'blankie_enqueue', 11 );
+add_action( 'wp_enqueue_scripts', 'blankie_enqueue', 11 );