bonny / WordPress-Simple-Fields

WordPress plugin that extend Custom Fields to include textareas, WYSIWYG-editor, files, attachments, well basically anything
http://wordpress.org/extend/plugins/simple-fields/
88 stars 23 forks source link

Simple Fields WordPress Custom Fields Plugin

Please note that Simple Fields is not actively developed anymore.

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.

Current build status

Master branch Build Status

Develop branch Build Status

Screenshots

Works great for attachments

Screenshot 2

Mix fields any way you want to

Screenshot 1

Field Types

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

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

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

?>