Wednesday, July 28, 2010
Pearl Harbour
I liked the movie a lot I enjoyed it at Apsara Cinema Hall at Guwahati during my 12th class with my room mate Nabojyoti Saha. Its a nice movie I liked the way they fight back.
Flooding
Short for User Operation Prohibitions UOP is a selection on a DVD that
has been flagged to prevent certain user actions. For example, a FBI
Warning on a DVD cannot be skipped or or fast-forwared by the viewer
as a direct result of a UOP.
has been flagged to prevent certain user actions. For example, a FBI
Warning on a DVD cannot be skipped or or fast-forwared by the viewer
as a direct result of a UOP.
Thursday, July 22, 2010
Adding Custom fields to Autor/ User profile
The code below will show you how to add additional twitter and facebook fields, but you can use it to add any other field that you like.
function my_new_contactmethods( $contactmethods ) {
// Add Twitter
$contactmethods['twitter'] = 'Twitter';
//add Facebook
$contactmethods['facebook'] = 'Facebook';
return $contactmethods;
}
add_filter('user_contactmethods','my_new_contactmethods',10,1);