Archive for 2010

6330 NE Emerson

Wednesday, March 10th, 2010

Now that the offer has been accepted, I feel comfortable uploading the fuzzy photos that we took during the walk-through:

TwitCategory – Updated to 0.1.9

Tuesday, March 2nd, 2010

gabriel.nagmay.com/2009/10/twitcategory/

Let us know if you like it! 2

Photos from Thousand Acres

Tuesday, February 23rd, 2010

I am stuck in my cube today. However, my father was “nice enough” to send me some photos that he took today during a walk at the 1000 acres wilderness area.

Just thought that I would share for all those others stuck inside today…

Reason #394 Why I love WordPress

Saturday, January 16th, 2010

I am in the middle of a project and will keep this short… but  wanted to mention again how great WP works as a basic CMS.

For instance, you can create custom meta boxes:

add_action(‘admin_menu’, ‘create_color_meta’);

add_action(’save_post’, ’save_color_meta’);

These replace the need to have the client use the Custom Field box – in fact, feel free to delete the Custom Field box:

remove_meta_box(‘postcustom’,'post’,'normal’);

For this project I created two custom Meta boxes. The top one allows the client to change the background color (it even verifies the hex code). The bottom one allows the inclusion of a custom Flickr Set. It actually captures 2 fields, the type and the set ID.

Note: These are not plugins – it’s just extra code placed in functions.php: