Skip to content

Instantly share code, notes, and snippets.

@danielpataki
Last active October 17, 2020 00:06
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save danielpataki/1888a154b37133479e4049ee943e0fb7 to your computer and use it in GitHub Desktop.
Save danielpataki/1888a154b37133479e4049ee943e0fb7 to your computer and use it in GitHub Desktop.
jQuery in WordPress
/* Regular jQuery */
$('.hideable').on('click', function() {
$(this).hide();
})
/* Compatibility Mode */
jQuery('.hideable').on('click', function() {
jQuery(this).hide();
})
function my_admin_scripts() {
wp_enqueue_script( 'my-great-script', plugin_dir_url( __FILE__ ) . '/js/my-great-script.js', array( 'jquery' ), '1.0.0', true );
}
add_action( 'admin_enqueue_scripts', 'my_admin_scripts' );
function my_theme_scripts() {
wp_enqueue_script( 'my-great-script', get_template_directory_uri() . '/js/my-great-script.js', array( 'jquery' ), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'my_theme_scripts' );
jQuery(document).ready(function( $ ) {
$('.hideable').on('click', function() {
$(this).hide();
})
});
@devastuces
Copy link

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment