Simple Fields WordPress Custom Fields Plugin
============================================

*Please note that Simple Fields is [not actively developed anymore](http://simple-fields.com/2016/bye-bye-simple-fields/).*

Simple Fields is a WordPress plugin that adds visual Custom Fields, 
hence making them more usably for end users (aka customers). 

This version here at GitHub is the development version. Please see
http://wordpress.org/extend/plugins/simple-fields/
for the latest and stable version.

* See http://simple-fields.com for getting started guides and API documentation.
* Author: [Pär Thernström](https://twitter.com/eskapism "@eskapism")

## Current build status

Master branch
[![Build Status](https://travis-ci.org/bonny/WordPress-Simple-Fields.png)](https://travis-ci.org/bonny/WordPress-Simple-Fields)

Develop branch
[![Build Status](https://travis-ci.org/bonny/WordPress-Simple-Fields.png?branch=develop)](https://travis-ci.org/bonny/WordPress-Simple-Fields?branch=develop)

## Screenshots

Works great for attachments

![Screenshot 2](http://simple-fields.com/wordpress/wp-content/uploads/2012/09/feature-image-repeatable-fields11.png)

Mix fields any way you want to

![Screenshot 1](http://simple-fields.com/wordpress/wp-content/uploads/2012/09/feature-fields-types.png)

## Field Types

There are many built in custom field types in Simple Fields:

* Color picker field
* Date- & Timepicker field
* Dropdown field
* File field
* Checkbox field
* Radiobutton field
* Textarea/HTML/TinyMCE field
* and more ...

## Usage

### Adding fields
Use the GUI in WordPress or use PHP directly in your functions.php like this:
https://gist.github.com/3851387

### Getting field values

```php
<?php

$textfield_output = simple_fields_value("my_text_field");
$file_attachment = simple_fields_value("my_file_field");

?>
```