'Muli:400,400i,700,700i|Poppins:400,400i,500,500i,600,600i,700,700i', 'subset' => 'latin,latin-ext', ); wp_enqueue_style( 'builders-landing-page-google-fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null ); } add_action( 'wp_enqueue_scripts', 'builders_landing_page_enqueue_styles_and_scripts' ); /** * Dequeue scripts from parent theme */ function builders_landing_page_dequeue_parent_theme_styles_and_scripts(){ wp_dequeue_style( 'construction-landing-page-google-fonts' ); wp_deregister_style( 'construction-landing-page-google-fonts' ); } add_action( 'wp_enqueue_scripts', 'builders_landing_page_dequeue_parent_theme_styles_and_scripts', 100 ); function builders_landing_page_remove_parent_filters(){ remove_action( 'customize_register', 'construction_landing_page_customizer_demo_content' ); } add_action( 'init','builders_landing_page_remove_parent_filters' ); /** * Implementing parent theme functions to the child theme. */ require get_stylesheet_directory() . '/inc/parent-functions.php'; /** * Implementing new child theme functions to the child theme. */ require get_stylesheet_directory() . '/inc/child-functions.php';