Skip to content

Category: jQuery

WordPress and jQuery issues

First, I don’t remember where I found this along the way, but this is a smart and efficient way to include jQuery in your WordPress themes. Just add this to your theme’s functions.php file: // ADDING JQUERY add_action( ‘init’, ‘jquery_register’ ); add_filter( ‘script_loader_src’, ‘jquery_unversion’ ); function jquery_register() { if (…

Some CSS Resources

I found an excellent resource for Cascading Style Sheets (CSS), which has a list of great tutorials and examples for the beginner or intermediate CSS user. These are the basics when any developer or designer should have a handle on: 9 Top CSS Essential Skills That Every Web designer Should…