Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 8, 2021 14:48
Show Gist options
  • Save wpmu-authors/53fef91bddb0eef98888792a74b0da38 to your computer and use it in GitHub Desktop.
Save wpmu-authors/53fef91bddb0eef98888792a74b0da38 to your computer and use it in GitHub Desktop.
enqueue-backend.php
function my_admin_scripts() {
wp_enqueue_script( 'my-great-script', plugin_dir_url( __FILE__ ) . '/js/my-great-script.js', array( 'jquery' ), '1.0.0', true );
}
add_action( 'admin_enqueue_scripts', 'my_admin_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment