Snippets

Crumina Team Main JS file from child theme

Created by Alexandr Kostyrka
1
2
3
4
5
6
7
8
9
function crum_child_js() {
	
	wp_deregister_script( 'global-js' );
    wp_dequeue_script( 'global-js' );
	
	wp_enqueue_script( 'child-global-js', get_stylesheet_directory_uri().'/js/theme-functions.js', array( 'jquery' ), '', true );
}

add_action( 'wp_enqueue_scripts', 'crum_child_js', 99 );

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.