Add custom CSS and JavaScript to Digits plugin's page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function add_custom_assets_to_digits_page() { | |
wp_register_script( 'myprefix-js', '', array("jquery"), '', true ); | |
wp_enqueue_script( 'myprefix-js' ); | |
wp_add_inline_script( 'myprefix-js', "JS goes here"); | |
} | |
add_action( 'login_enqueue_scripts', 'add_custom_assets_to_digits_page', 99); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment