Title: Sifency Admin Option Builder
Author: Sifency
Published: <strong>September 17, 2026</strong>
Last modified: September 17, 2026

---

Search plugins

![](https://ps.w.org/sifency-admin-option-builder/assets/banner-772x250.png?rev=
3700007)

![](https://ps.w.org/sifency-admin-option-builder/assets/icon-256x256.png?rev=3700007)

# Sifency Admin Option Builder

 By [Sifency](https://profiles.wordpress.org/sifency/)

[Download](https://downloads.wordpress.org/plugin/sifency-admin-option-builder.1.0.0.zip)

 * [Details](https://wordpress.org/plugins/sifency-admin-option-builder/#description)
 * [Reviews](https://wordpress.org/plugins/sifency-admin-option-builder/#reviews)
 *  [Installation](https://wordpress.org/plugins/sifency-admin-option-builder/#installation)
 * [Development](https://wordpress.org/plugins/sifency-admin-option-builder/#developers)

 [Support](https://wordpress.org/support/plugin/sifency-admin-option-builder/)

## Description

Sifency Admin Option Builder gives you a **Option Builder** screen where you build
option panels by dragging fields into sections – set each field’s ID, label, and(
where relevant) a CSS class – with no PHP required.

Every panel you build is rendered, saved, and sanitized through the same engine 
a developer would otherwise wire up in code (`Sifency_Admin_Options_Framework`),
so the same field-level sanitization, tabs/sections structure, and Customizer bridge
apply automatically to anything you build visually.

#### Option Builder screen

 * Create any number of panels, each with its own title.
 * Add sections (tabs) and drag fields into them from a type palette: text, textarea,
   rich text, number, select, button set, image select, color, link color, media,
   icon, date/time, link, plus label-only heading/subheading/notice rows.
 * Reorder sections and fields by drag-and-drop.
 * Per panel, choose where it appears: its own page under Settings, in the Customizer,
   or both.
 * Set each field’s ID, label, CSS class, default value, and description directly
   in the builder – no code editor required.

#### For theme and plugin developers

The panel-building engine behind the builder is also available directly in PHP, 
for cases the visual builder doesn’t cover:

    ```
    Sifency_Admin_Options_Framework::createOptions( 'my_plugin_options', array(
        'menu_title'      => 'My Plugin',
        'framework_title' => 'My Plugin Settings',
    ) );

    Sifency_Admin_Options_Framework::createSection( 'my_plugin_options', array(
        'id'     => 'general',
        'title'  => 'General',
        'fields' => array(
            array( 'id' => 'my_field', 'type' => 'text', 'title' => 'My Field' ),
        ),
    ) );

    $value = Sifency_Admin_Options_Framework::getOption( 'my_plugin_options', 'my_field' );
    ```

Highlights of the engine:

 * **20+ field types** – text, textarea, number, select, button_set, image_select,
   color, link_color, background, border, dimensions, spacing, typography, icon,
   media, wp_editor, datetime, link, backup, group (repeatable rows), plus layout-
   only heading, subheading, content, and notice fields. The visual builder currently
   exposes the most commonly used subset of these; composite types (background, 
   border, spacing, dimensions, typography, group) remain available via the PHP 
   API.
 * **Server-side sanitization** for every field type, applied automatically on save–
   not left to the implementer.
 * **Tabs and sub-panels** – `fieldset` and `tabbed` field types let a single section
   fan out into nested navigation without extra registration calls.
 * **Customizer bridge** – pass `'show_in_customizer' => true` on a panel (or choose“
   Customizer” / “Both” in the visual builder) and its compatible fields appear 
   in Appearance > Customize with live preview, alongside the dedicated settings
   page.
 * **Filterable rendering** – `apply_filters( 'sifency_fw_render_field_{type}', ...)`
   lets you override or add a field type without touching core files.
 * Zero external dependencies and zero external requests – see the FAQ below.

## Installation

 1. Upload the `sifency-admin-option-builder` folder to `/wp-content/plugins/`, or 
    install through the Plugins screen directly.
 2. Activate the plugin through the “Plugins” screen in WordPress.
 3. Go to Option Builder in the WP Admin menu to create your first panel.

## FAQ

### Do I need a specific theme for this to work?

No. The Option Builder screen works with any theme, out of the box.

### Who can use the builder or edit built panels’ values?

Users with the `manage_options` capability (administrators on a standard single-
site install).

### Does this plugin track or send any data externally?

No. This plugin does not collect, transmit, or share any data. All settings are 
stored locally in your site’s WordPress database.

### I’m a theme/plugin developer – can I add my own settings panel using this?

Yes, via `Sifency_Admin_Options_Framework::createOptions()` / `createSection()` –
see the Description tab above. This is entirely separate from panels created with
the visual builder.

### Will my built panel also show up in the Customizer?

Only if you choose “Customizer” or “Both” for that panel in the builder, and only
for the subset of field types the Customizer bridge supports (listed in the Description
tab). Everything else remains editable on the dedicated settings page.

### What happens to my panels if I deactivate or uninstall the plugin?

Deactivating keeps your data. Uninstalling (deleting the plugin from the Plugins
screen) removes every panel’s saved values and the builder layout itself, per `uninstall.
php`.

### Does this plugin call home, phone out for updates, or bundle any third-party JS from a CDN?

No. All assets are enqueued from the plugin’s own `assets/` folder, using WordPress’s
bundled jQuery UI Sortable and Color Picker.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Sifency Admin Option Builder” is open source software. The following people have
contributed to this plugin.

Contributors

 *   [ Sifency ](https://profiles.wordpress.org/sifency/)

[Translate “Sifency Admin Option Builder” into your language.](https://translate.wordpress.org/projects/wp-plugins/sifency-admin-option-builder)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/sifency-admin-option-builder/),
check out the [SVN repository](https://plugins.svn.wordpress.org/sifency-admin-option-builder/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/sifency-admin-option-builder/)
by [RSS](https://plugins.trac.wordpress.org/log/sifency-admin-option-builder/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.0.0

 * Initial release.

## Meta

 *  Version **1.0.0**
 *  Last updated **10 hours ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 6.5 or higher **
 *  Tested up to **7.1**
 *  PHP version ** 7.4 or higher **
 * Tags
 * [admin panel](https://wordpress.org/plugins/tags/admin-panel/)[customizer](https://wordpress.org/plugins/tags/customizer/)
   [drag-and-drop](https://wordpress.org/plugins/tags/drag-and-drop/)[options framework](https://wordpress.org/plugins/tags/options-framework/)
 *  [Advanced View](https://wordpress.org/plugins/sifency-admin-option-builder/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/sifency-admin-option-builder/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/sifency-admin-option-builder/reviews/)

## Contributors

 *   [ Sifency ](https://profiles.wordpress.org/sifency/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/sifency-admin-option-builder/)