Plugin info

Total downloads: 1,175
Active installs: 10
Total reviews: 1
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 3/5/2019 (2493 days ago)
Added to WordPress: 11/17/2018 (7 years old)
Minimum WordPress version: 4.6
Tested up to WordPress version: 5.0.0
Minimum PHP version: 5.4

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2493 days ago • 1 reviews

22/100

Is Custom Field Builder – WordPress custom fields plugin abandoned?

Possibly abandoned (last update 2493 days ago).

Compatibility

Requires WordPress: 4.6
Tested up to: 5.0.0
Requires PHP: 5.4

Languages

Similar & Alternatives

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

No similar plugins found yet.

Description

Custom Field Builder is a powerful and lightweight developer plugin to create custom meta boxes and custom fields for WordPress.

Features

• Many free custom fields (regular updating and adding new fields).
• Easy to install and very easy to use.
• Pure and clean code (increase your admin performance).

Links

Documentation

Available fields

• Textbox
• Textarea
• Select
• Media (image, attachments)
• Logic (checkbox may only “true” or “false”)
• Color picker
• Repeater
• Checkbox group
• Date picker
• Post relationship

Usage

Watch this short video tutorial

https://www.youtube.com/watch?v=AEeothh5apo

Add the following code to your functions.php (or in any convenient file).

registerTemplate([
            'id'          => 'custom_fields',
            'title'       => 'Custom Field Builder example',
            'post_type'   => 'post',
            'position'    => 'normal',
            'priority'    => 'high',
            'fields'      => [

                'author_name' => [
                    'type'    => 'textbox',
                    'title'   => 'Author name'
                ],

                'author_bio' => [
                    'type'    => 'textarea',
                    'title'   => 'Author bio'
                ]

            ]
        ]);
    });
?>

You also can include your custom template in php file. For example:

registerTemplate('path_to_your_template_file.php');
    });
?>

** See all fields example in examples/base-fields-template.php in plugin directory! **

Installation

Via Composer.

composer require kirillbdev/custom-field-builder:dev-master

To do an automatic install of Custom Field Builder, log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.

In the search field type “cfb” or “Custom Field Builder” and click Search Plugins. Once you have found it you can install it by simply clicking “Install Now”.

The WordPress codex contains instructions on how to install a WordPress plugin.

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

  1. Register custom fields template in functions.php file.

    Register custom fields template in functions.php file.

  2. Custom fields

    Custom fields

  3. Repeater field

    Repeater field

Changelog

Version 1.2.4 / (05.03.2019)

  • Editor Field release (See example file)

Version 1.2.3 / (18.12.2018)

  • Some bug fix and refactoring.

Version 1.2.2 / (13.12.2018)

  • Fix bug when textarea in repeater not save new line char.

Version 1.2.1 / (02.12.2018)

  • getPostFields API method release (see more in Documentation).
  • Fixed error when call API method getPostField on Repeater which contains Checkbox group field.

Version 1.2.0 / (28.11.2018)

Version 1.1.6 / (22.11.2018)

  • Fix post relationship field (not working for WooCommerce).

Version 1.1.5 / (22.11.2018)

  • Added Post relationship field.

Version 1.1.1 / (20.11.2018)

  • Added Date picker field.

Version 1.1.0 / (18.11.2018)

  • Added Checkbox group field.
  • Fixed repeater bug, when not saved some field types.

Version 1.0.1 / (18.11.2018)

  • Fix bug when repeater save previous values when was empty.

Version 1.0.0 / (14.11.2018)

  • initial release.