Custom Field Template – An Effective Way to Add Extra Metadata to a WordPress Post
Posted on May 2, 2009, under Plugins, Wordpress,
Bookmark it
If you need an easier way to edit the extra metadata added to your posts you can try The Custom Field Template Plugin.

A quick feature list includes:
- The data can be edited faster (rather then selecting each field from the dropdown and add a value to it)
- Support for TinyMCE in the textarea.
- Support for media buttons in the textarea. – requires at least 2.5.
- Support for multiple fields with the same key.
- You can customize the design of custom field template with css.
- Adds template instruction sections.
- Adds template instruction sections.
- Adds the attributes of before and after text. (before = blah, after = blah)
- Adds the export and import functionality.
- Adds the style attribute. (style = color:#FF0000;)
- Adds the maxlength attribute. (maxlength = 10)
- Adds the attributes of multiple fields. (multiple = true, startNum = 5, endNum = 10, multipleButton = true)
[Go to Plugin's Homepage | Visit Author's Homepage]
Do you wish to receive the latest updates as soon as they are posted? Get our RSS Feed or Subscribe to the Newsletter!
- May 2, 2009
- article by Gabriel C.
- 4 comments
Related Posts
-
Effective Image Optimization: WordPress Smush.it Pluginat July 21, 2009 with 2 comments
-
WordPress Template & Theme Generator: Divine Elementeat October 9, 2011
-
Professional Photography Portfolio Template from Flabell: Reviewat December 1, 2009 with 1 comment
-
Easily Integrate your ‘Buy Sell Ads’ Zones in your WordPress Blogat August 2, 2009 with 1 comment
-
Login with AJAX: A WordPress Plugin to Login without Page Refreshat January 2, 2010

4 Replies to "Custom Field Template – An Effective Way to Add Extra Metadata to a WordPress Post"
July 22, 2009 at 3:06 PM
The question is: is it possible to have a field to upload image via this plugin?
Thanks
July 17, 2011 at 1:10 PM
Yes Kamal!
I have use this code:
<?php $sli = get_post_meta($post->ID, 'custom_image', true); ?>
<img src="<?php bloginfo('template_url'); ?>/<?php echo wp_get_attachment_url( $sli ); ?>" title="your title" alt="your alt" />
;)
July 19, 2011 at 4:42 AM
Hi Siti Internet Roma,
the code you provide is to output the image path. But i’d like to know how to creat a field to upload PHOTOS?
July 22, 2011 at 3:15 AM
Just create in the admin a file input with this:
[cf-file]
type = file
label = Upload file:
You can check the list of all the options available under “Option List” in the admin of the plugin