Custom Field Builder – WordPress custom fields plugin

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
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! **
Download & install the zip archive
The plugin package installer can be downloaded from the WP2E project tab called “code”.
1 – Select the version to download if this option is available otherwise the “latest” version of the main plugin will be used.
2 – After downloading the zip archive install the plugin package installer in you local environment and activate the script from the plugin list.
3 – Under the section “Plugins” of the admin dashboard you should see a new “Dependencies & Licenses” link. Follow the instructions from this panel to finalize the installation of the missing dependencies.
- Give a name to your project
- Download the Installer Package
- Install & activate the plugin locally
- Install the suggested dependencies
Tips: Use the WP2E panel to add/suggest new dependencies to the local installation. Press F5 in the list of dependencies if the changes are not displayed right away.



