WordPress Expert Special Offer: Free WordPress Installation, Free WordPress Development Consultation, Budget cut-off for your WordPress customization
Get your owndomain name for $10 only! Get the cheapest web hosting for $6 a year, Free WordPress Installation, Free WordPress Development Consultation, Budget cut-off for your WordPress customization, and much more.Get free web hosting to test your website first. Just contact us and we will never charge any cost, and the best part is you can alsoget free WordPress installation and ready to used for your website. Start today! Get this special offer Now! Don’t waste your time, it’s only until end of this year!
Quick Tip: A 4 Minute Crash-Course in WordPress Custom Fields
Posted on May 13th, 2010 in WordPress with 4 Comment(s). .Today’s quick tip topic comes from a question, concerning the use of custom fields in WordPress. Luckily, as you’ll find, attaching unique data to postings is as simple as assigning a value in the “Edit Post” page, and then referencing that information with the get_post_meta() method.
Step 1: Create a New Post
In your local testing environment, create a new posting in the WordPress admin panel, and scroll to the bottom, until you see the “Custom Fields” widget.

This section allows for a key, and a value. For example, if you aren’t taking advantage of the new “Post Thumbnail” feature, available in WordPress 2.9, and need a way to attach a thumbnail to each posting, this is where you’d accomplish that task. You could assign a key of “thumb,” and a value, which is equal to a path to the desired thumbnail. Go ahead and fill this section with some test data – anything you wish. I’ll use “difficulty” as my key,” and “hard” as the value.
Step 2: Edit Index.php
Now visit your theme, and within the WordPress loop in your index.php page, reference the get_post_meta() method.
<?php echo get_post_meta($post->ID, 'difficulty', true); ?><
This method accepts three parameters.
- The id for the desired post. You can use $post->ID or “the_id()” to insert this value.
- The key that you require. Remember, you can insert multiple custom fields. This is why we need to reference the key, in my case, “difficulty.”
- A boolean, which determines whether you want the information returned as a string, or an array. As I’m echoing out my value, I’ve chosen true (or string).
Step 3: What If…
If you view run the website, you’ll see the correct value. If you went with a thumbnail path in your custom field, make sure that you echo out that string from within an IMG tag, accordingly. However, there’s one problem here; it’s possible that not EVERY single post will have this “difficulty” custom field attached, yet we’re blatantly assuming that there will be. This is inefficient. Instead, why don’t we first create an “if” statement, and determine whether our desired key exists first. Smarter right?
<?php if ( get_post_meta($post->ID, 'difficulty') ) : ?> <small> <?php echo get_post_meta($post->ID, 'difficulty', true); ?></small> <?php endif; ?>
Conclusion
Custom fields are a staple in every experienced WordPress designer’s toolbox. Learn them, and use them! Thanks for reading!

It is hard to choose only three of the best attributes for Bambang. He has consistently provided me with superlative work, has always been communicative (even with my high necessity for such), and in our working relationship I have always felt that his work has exceeded all of my expectations. A pleasure to work with! We are going to continue to ask for his generous help throughout the ongoing development of our website.
how to feed your blog?
You can subscribe by email at http://feedburner.google.com/fb/a/mailverify?uri=minilibra or your favorites feed reader, just use http://feeds.minilibra.com/minilibra for the link feed.
great experience, dude! thanks for this great post wow… it’s very wonderful report.
Thanks for review.