Created
July 7, 2016 20:02
-
-
Save jpen365/edbaff053f33d0d44d219a0a2687d802 to your computer and use it in GitHub Desktop.
Enqueue responsive-tables.js with functions.php
This file contains hidden or 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 responsive_tables_enqueue_script() { | |
wp_enqueue_script( 'responsive-tables', get_stylesheet_directory_uri() . '/responsive-tables.js', $deps = array(), $ver = false, $in_footer = true ); | |
} | |
add_action( 'wp_enqueue_scripts', 'responsive_tables_enqueue_script' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment