Custom Field Builder

Create and manage custom fields simply for your site.

Author:kirillbdev (profile at wordpress.org)
WordPress version required:4.6
WordPress version tested:5.0.0
Plugin version:1.2.4
Added to WordPress repository:17-11-2018
Last updated:05-03-2019
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:100
Rated by:1
Plugin URI:http://cfbuilder.kirillbdev.pro
Total downloads:799
Active installs:10+
plugin download
Click to start download

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

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

<?php
    add_action('cf_builder_init', function ($cfBuilder) {
        $cfBuilder->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:

<?php
    add_action('cf_builder_init', function ($cfBuilder) {
        $cfBuilder->registerTemplate('path_to_your_template_file.php');
    });
?>

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


Screenshots
ChangeLog