Skip to content

wpscholar/flex-fields

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f973e0f · Jul 31, 2022
Apr 29, 2021
Jul 31, 2022
Sep 2, 2021
Jul 31, 2022
Sep 2, 2021
Jul 2, 2020
Sep 26, 2017
Jul 2, 2020
Jun 26, 2021
Feb 27, 2018
Jan 29, 2018
Jan 29, 2018
Jul 31, 2022
Jul 31, 2022
Jul 31, 2022

Repository files navigation

Flex Fields

A library for working with fields in WordPress.

Installation

  • Run composer require wpscholar/flex-fields
  • Make sure you require the vendor/autoload.php file in your project.

Usage

Register a field

<?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'
);

Render a field

<?php

render_flex_field(
  'email_address',  // Field name 
  'default'         // The group name, defaults to 'default'
);

Maintainers

Micah Wood

Contributors

This project exists thanks to all the people who contribute.

project contributors