Plugin info

Total downloads: 1,566
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 9/29/2015 (3746 days ago)
Added to WordPress: 1/7/2014 (11 years old)
Minimum WordPress version: 3.8
Tested up to WordPress version: 4.3.34
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3746 days ago

20/100

Is Admin Form Framework abandoned?

Possibly abandoned (last update 3746 days ago).

Compatibility

Requires WordPress: 3.8
Tested up to: 4.3.34
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Machine Language
Rating 0.0/5 (0 reviews)Active installs 0
CMB2
Rating 5.0/5 (91 reviews)Active installs 300,000
OptionTree
Rating 4.7/5 (105 reviews)Active installs 60,000
Custom Global Variables
Rating 5.0/5 (10 reviews)Active installs 6,000
ThemeKit For WordPress
Rating 0.0/5 (0 reviews)Active installs 800
Admin Options Pages
Rating 5.0/5 (9 reviews)Active installs 600

Description

This plugin will help you quickly set up a standard WordPress settings page for your project, be it a theme or a plugin. That’s it!

Below is a “Hello World” piece of code to quickly get you an idea. It will generate a standard settings page with a checkbox, complete markup, save logic.

add_field(     array(       'name'        => 'simple_checkbox',       'label'       => __( 'Is this plugin awesome?', 'textdomain' ),       'type'        => 'checkbox',       'description' => __( 'Help your users with a nice description.', 'textdomain' ),       'section'     => 'general', // Optional. Default section. You can add new ones as easily as adding a field.     )   );    // Render the page - this is mandatory   $options_page->init();  ?> 

There are a zillion options plugins out there. Why this?

All plugins will inevitably have their limitations, but Admin Form Framework is written in form of an object that can be easily extended to suit your needs. This is what we use internally at Dream Production.

Get started

For a complete example / settings page template, open up the included my_options.php file from examples folder.

Installation

  1. Upload to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Follow the instructions to get started with your first settings page.

Frequently Asked Questions

Does this plugin do anything by itself?

No. This plugin is targeted at developers of WordPress themes and plugins.

Why not use WordPress Settings API directly?

The Settings API can be difficult to use by the novice developer. Writing the settings pages means a lot of code that can be difficult to follow, and a lot of repetitive HTML code. Admin Form Framework wraps it all up and allows you to quickly add the options you need without thinking about the technicalities of defining, saving and displaying the options on the options page.

When should I not use Admin Form Framework?

If you require a lot of custom markup or advanced validation, this plugin may get in your way. However, you can easily extend the settings class with new option types that satisfy your particular needs.

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.2.3

  • Added wysiwyg field type

1.2.1

  • Externalized form and form fields

1.2.0

  • Added file field type

1.1.2

  • Allow saved options to be set externaly

1.1.1

  • Multilingual options made optional

1.1

  • Added WPML compatibility.

1.0.3

  • Fixed Multisite forms.

1.0.2

  • Added single / multisite compatibility.

1.0.1

  • Fixed example and readme.

1.0

  • First public release.