Uncategorized

5 New Features in WordPress 3.0

by LunchBox on March 31st, 2010 in Uncategorized

WordPress 3.0 is a month away (Official Release date is May 1st, 2010), but a few of its new features have already been leaked to the public. There are a few that are nice, but not completely necessary for hardcore WordPress user (new default theme, custom background for a theme, new welcome guide), but here a few features I’m really excited about. …Read More

Automatically Include jQuery

by LunchBox on March 22nd, 2010 in Uncategorized

Automatically include jQuery to your blog’s theme by entering the following script in your theme’s functions.php page:

if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"), false, '1.3.2');
wp_enqueue_script('jquery');
};

…Read More