Weezer and Sara Bareilles Duet (If You're Wondering If I Want You To) I Want You To

One of the best duets I've seen and heard in a long time. I don't know much about Sara Bareilles (except apparently she's an a cappella singer who made it big), but she and Rivers sound great.

Weezer has really become one of the most creative bands out there — check out the AOL Sessions stuff. Chamillionaire, Kenny G (yes, it's true), covers of MGMT, Green Day, Coldplay and even Lady Gaga. Plus, Rivers' chorus on B.o.B's Magic is awesome.

Enjoy the video.

How to Register WordPress Multisite Widget Areas For Only the Main Site

If you're running an installation of WordPress multisite or Buddypress, where the main site has a different look and feel than the network of sites, you've likely registered some widget areas that are only necessary for the main site.

The issue, however, is that your network of sites see these widget areas (that they can't use) in their Widget editor. And if you've created a lot of widget areas that their design doesn't use, you're likely confusing your users with unnecessary choices.

So if you want to have widget areas available for your main site and not your network, use this easy fix.

In your functions.php file (where you register the widget areas), simply add this line of code:

global $blog_id;
if( $blog_id == '1' ) {

REGISTER YOUR WIDGET AREA HERE

}

And that's it. You can put as many widget areas in this code block as you want.

If you want to register certain widget areas for your network and not the main site, simply change == '1' to !=='1'.

If you want to register certain widget areas for specific blogs, simply change the blog_id to the ID of the blog where it should appear.

Powered by WordPress with GimpStyle Theme design by Horacio Bella.
Entries and comments feeds. Valid XHTML and CSS.