=== AddonLogic Basic Repeater Field ===
Contributors: snehalpancholi
Tags: repeater field, meta box, custom fields, repeatable
Requires at least: 6.0
Tested up to: 6.7
Stable tag: 1.0.0
Requires PHP: 8.1
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Add repeatable row meta boxes to any post type with a point-and-click field builder.

== Description ==

AddonLogic Basic Repeater Field lets you define a group of sub-fields (text, textarea, number, email, URL, date) and attach them to any post type as a repeatable meta box. Editors can then add or remove rows directly in the post editor.

**Features:**
* Point-and-click repeater group builder in admin
* 6 sub-field types: text, textarea, number, email, URL, date
* Attach to one or more post types
* Add/remove rows in the post editor with live reindexing
* Template tag `addlc_brf_get_rows()` to retrieve rows in templates
* Stored as serialized post meta

== Usage in templates ==

```php
$rows = addlc_brf_get_rows( 'team_members' );
foreach ( $rows as $row ) {
    echo esc_html( $row['name'] );
    echo esc_html( $row['role'] );
}
```

== Installation ==

1. Upload `basic-repeater-field` folder to `/wp-content/plugins/`
2. Activate the plugin
3. Go to **Repeater Fields** in the admin sidebar
4. Create a group, define sub-fields, and attach to post types

== Changelog ==

= 1.0.0 =
* Initial release

== Upgrade Notice ==

= 1.0.0 =
Initial release.
