Author Archive
My Amazon Review of “WordPress Bible”
[This item was cross-posted at jesseluna.com]
One of my themes for 2010 is Own Your Content. In that light, I’m sharing the Amazon.com review I did of Aaron Brazell’s WordPress Bible.
Here is the text of my Amazon review for the WordPress Bible:
I’ve been developing Web sites for over 12 years and jumped into WordPress design about two years ago.
This book will help me super charge my development. Having come from a .Net developing background, I’ve only been tweaking PHP code and using software to create 80% of my new theme code. This book will give me the tools to further explore the code and learn how to do things from scratch.
In addition, the WordPress Bible provides great sets of “cheat sheets” to help figure out some of the complexities of theme layouts, the dreaded loop, and other structures.
I’ve also been Alpha testing the WordPress 3.0 code and the contents of the book are still highly relevant. In fact, I’ve never used the WordPress MU functionality but will take the tips and information in this book to help direct me on the 3.0 multi-site setup which is still being developed.
I highly recommend this book for anyone interested in taking their blogs to the next level and for WordPress designers and developers. I can’t wait to use the book to get under the hood of my next project and super charge that sucker.
* Direct link to my Amazon Review Feel free to “Like” it or leave a comment there.
—
As you decide where to spend your hard-earned money, I recommend the WordPress Bible for WordPress developers and theme designers. WordPress beginners (non-developers) might have trouble understanding it so you should browse through the book before buying it.
I would have liked to have seen more information on adding video to blogs since I’m a lifestreamer and do a lot of video. But photo bloggers will be happy since the book does have a special section for them.
I tweeted a link to this image on Posterous when I went to purchase the WordPress Bible. Despite Chuck Norris’s will, I only purchased the WP Bible. ![]()

Shameless Affiliate link so you can buy a copy or three:
(Note/reminder: The Chuck Norris book is not included, although it really wants to be)
How To Create and Resize A Custom YouTube Player
YouTube allows you to create a custom video player but the process doesn’t include an easy way to set the player size. I’ll show you how to do both.
Create the custom player
You can create a custom player by logging into your YouTube account then selecting “Account” link next to your user name at the top right of the page.

From the Account page, click on the “Custom Video Players” link under the “More” column.
Click on the Create Custom Player button, add the player name and description, select the layout, then select the video(s) you want to include. If you want to create a player for only one video or for a specific group then you can save what you have at this point and create a Playlist with those videos. Otherwise, select the video(s) that you want to include in this player.
Click on the “Select” button once you selected the videos(s) to include in the player.
Once things look good, click on the “Generate Code” button then you’ll see the Embed Code box with the HTML code in it.
At the time of this post, the default player size is 416 by 337 pixels. You probably noticed that the Create a Custom Player process never allowed you to set the player size. I’ll show you how to edit the code so you can get the right player size.
Edit the Embed Code
Copy the Embed Code and paste it into a Notepad or Text file for now. Now, we’re going to change four parts of that code, the two “width” and two “height” parameters which are both 416 by 337 respectively.
To avoid strenuous math at this point, I included a data table that has the width and height at different percentages of the original player size. So if you want the player to be around 300 pixels wide, you’ll need to set the height to be around 240 pixels, based on the chart below.
| Player Parameters | ||
| Width | Height | Percentage |
| 125 | 101 | 30 |
| 146 | 118 | 35 |
| 166 | 135 | 40 |
| 187 | 152 | 45 |
| 208 | 169 | 50 |
| 250 | 202 | 60 |
| 270 | 219 | 65 |
| 291 | 236 | 70 |
| 312 | 253 | 75 |
| 354 | 286 | 85 |
| 374 | 303 | 90 |
| 395 | 320 | 95 |
| 416 | 337 | 100 |
| 437 | 354 | 105 |
| 458 | 371 | 110 |
| 478 | 388 | 115 |
| 499 | 404 | 120 |
| 520 | 421 | 125 |
| 541 | 438 | 130 |
| 562 | 455 | 135 |
| 582 | 472 | 140 |
| 603 | 489 | 145 |
| 624 | 506 | 150 |
Final Steps
Now that you have the desired width and height, change those values in the Embed Code then add the entire code to your blog. If it doesn’t fit correctly, revisit the table above and find a combination that works for you.
You just learned how to create and resize a custom YouTube Player!
[Cross posted on jesseluna.com]


