Add this code to the header.php file in the theme. Add this line before wp_head():
wp_enqueue_script("jquery");
Then you can write a script (inside script tags) – somewhat like this:
var $j = jQuery.noConflict(); // using j as selector to avoid conflicts $j(function(){ $j("#respond").hide(); // hide comment field });
Based on this tutorial by Chris Coyier.
Leave a Reply