No, not really. But how would I go about writing jQuery using that? Just throwing a script in there doesnt work so thats kind of where Im lost. ??
Are you trying to enqueue a jQuery library, or are you trying to write an inline script using jQuery? If you’re trying to write an inline script (e.g. for a slider or something), that should work just fine. Just be aware that WordPress uses no-conflict, so you can’t nakedly use $
as a shorthand for jQuery
.
In the last version of WordPress I used, I could just link to the jQuery-file in the header and write my script, which in 3.3.1 causes problems.
…in which case, we’re right back where @esmi started: wp_enqueue_script()
.