A library for working with fields in WordPress.
- Run
composer require wpscholar/flex-fields - Make sure you require the
vendor/autoload.phpfile in your project.
<?php
register_flex_field(
'email_address', // The field name
[ // The field arguments
'field' => 'input',
'type' => 'email',
'value' => '[email protected]',
],
'default' // The group name, defaults to 'default'
);<?php
render_flex_field(
'email_address', // Field name
'default' // The group name, defaults to 'default'
);This project exists thanks to all the people who contribute.