livy/plumbing-acf

A friendly interface for safely interacting with ACF.

2.0.0 2018-12-13 23:05 UTC

This package is auto-updated.

Last update: 2024-04-14 19:19:41 UTC


README

This provides a very, very simple wrapper for ACF. The only meaningful "feature" it adds in this version is the ability to query several fields at once, and return them in a compiled array.

Usage

First, install the package:

composer require livy/plumbing-acf

Once it's installed, you can access its methods like so:

Livy\Plumbing\ACF\Simple::getField('my-field');

To save some typing, you can always use use:

use Livy\Plumbing\ACF\Simple as ACF;

ACF::getField('my-field');

getFields()

This method can accept several fields to query at once, and will return them as an array (or a collection, if Illuminate\Collection) is available. See the method source for documentation.