Alıntı
/*
ADDING VIDEOS
**********************
VIDEOS FROM YOUTUBE, GOOGLE, ETC.: ===================================
Adding videos is easy if you've used custom fields before.
- Read: Using Custom Fields « WordPress Codex - WordPress custom field guide.
- Read: Using WordPress Custom Fields: Introduction: Using WordPress Custom Fields tutorial series - my personal tutorial on custom fields.

To add a video from YouTube, Google, or Metacafe:
- Find the video that you want and grab the embed code.
-- YouTube example: Here's a video I have on YouTube -
YouTube - Drinking a Gallon of Milk in Less Than 15 Minutes
-- The embed code is:

<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/2VOQgMMErxA&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/2VOQgMMErxA&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>

-- We want to strip that down to the simplest thing we can get it to: the URL.
http://www.youtube.com/v/2VOQgMMErxA&rel=1
-- Now, remove the &rel=1 from the end because we don't need that.
-- You URL should now look like:
http://www.youtube.com/v/2VOQgMMErxA

- Create a custom field Key named "Video" (it must be capitalized - case-sensitive)
- In the Value field, add the URL http://www.youtube.com/v/2VOQgMMErxA

- Now, you can write your post, but it has to be in a Category named "Video."

- Your video will now show up in the sidebar.
şurayı açıklarsan sevinirim