Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 5, 2021 13:37
Show Gist options
  • Save wpmu-authors/9dd2aecd4530ace90ea0d47c351400b2 to your computer and use it in GitHub Desktop.
Save wpmu-authors/9dd2aecd4530ace90ea0d47c351400b2 to your computer and use it in GitHub Desktop.
enqueue.php
add_action( 'wp_enqueue_scripts', 'my_plugin_assets' );
function my_plugin_assets() {
wp_enqueue_script( 'my-notice-update', plugins_url( '/js/notice-update.js', __FILE__ ), array( 'jquery' ), '1.0', true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment