=== Fields === Contributors: Khanh Cao Tags: fields, custom, admin, metadata Requires at least: 3.0 Tested up to: 3.0 Stable tag: 0.5 Creates custom write panels to manage post custom fields. == Description == Fields is a Wordpress plugin that let you manage write panels in your write/edit page. Fields supports post types that can have UIs. With Fields, you can define boxes which appear in your write panels. A box can contain a number of groups which are sets of custom fields that you can define. Boxes are displayed as meta boxes and groups are shown as tabs that can be switched inside boxes. Within a group, fields can be shown as either textfields, textarea, drop boxes, radio group or check boxes. Fields does not create custom post types, to do so, use other plugins such as WP Post Type UI. Brief structure of Fields: * Fields can be: textfield, textarea, select (drop box), radio group and check boxes * A group contains fields * A box contains groups * You can choose which groups a box shall include and which post types a box shall apprear in == Installation == To install Fields: 1. Upload the 'fields' folder to the '/wp-content/plugins/' directory 2. Activate the plugin. 3. Administer in Settings - Fields == Frequently Asked Questions == = Get custom field data = * To display a custom field's value, use field_meta($key, $single = true, $id = '') * To get the value only, use field_get_meta($key, $single = true, $id = '') = Display custom fields in posts = use shortcode *field* and *field_count* e.g. [field key="title"]. Parameters for [field] are: * key => '' * single => 'yes' ('yes'/'no') * separator => ', ' * first_separator => '' * last_separator => '' * before => '' * after => '' * before_item => '' * after_item => '' == Screenshots == 1. A box with two groups and fields 2. Boxes management 3. Groups management 4. Fields management == Changelog == = 0.2.5.1 = * Fixed a bug where the [field] shortcode did not display a textfield's multiple values properly = 0.2.5 = * Fixed a bug where a textfield's values were not saved in the correct order = 0.2.4 = * Fixed a bug where a just deleted field still shows on the group editing page * Added shortcode 'field' and 'field_count' = 0.2.3 = * Textfields now can have multiple values * Textfields can now store their values with or without html tags escaped * Minor html bugs fixed * Fields now can have notes attached * Added an underscore as a prefix to all custom fields to hide them from the original Wordpress custom fields editor * Added field_get_meta($meta, $single = true, $id = '') and field_meta($meta, $single = true, $id = ''), these functions can be used in themes to display fields = 0.2.1 = * Removed the debug panel * Added a FAQ section = 0.2 = * Resolved some minor bugs * Stable version = 0.1 = * First release