Home Plugins custom field builder
Custom Field Builder – WordPress custom fields plugin logo

Custom Field Builder – WordPress custom fields plugin

by kirillbdev on WordPress.org

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

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

Register custom fields template in functions.php file.

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! **

Active installations10+
Weekly downloads
10+11.11%
Version1.2.4
Last updated3/5/2019
WordPress version4.6
Tested up to5.0.0
PHP version5.4
Tags
cfbcustom field buildercustom fieldsCustom Metacustom meta fields