Skip to content

Instantly share code, notes, and snippets.

@jpen365
Created July 7, 2016 20:02
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jpen365/edbaff053f33d0d44d219a0a2687d802 to your computer and use it in GitHub Desktop.
Save jpen365/edbaff053f33d0d44d219a0a2687d802 to your computer and use it in GitHub Desktop.
Enqueue responsive-tables.js with functions.php
<?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