Created
April 20, 2019 03:41
-
-
Save yeriepiscesa/7e1f2423af6d19ea817be794dce071d4 to your computer and use it in GitHub Desktop.
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
add_action( 'wp_enqueue_scripts', 'sp_enqueue_styles_scripts' ); | |
function sp_enqueue_styles_scripts() { | |
wp_register_script( 'sp-contact-form-wa', | |
plugin_dir_url( __FILE__ ) . '/assets/contact-form-wa.js', | |
[ 'jquery' ], '1.0.0', true | |
); | |
wp_register_style( 'sp-css-grid', plugin_dir_url( __FILE__ ) . '/assets/contact-form-wa.css', array(), '1.0.0' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment