Download the PHP package mcguffin/acf-wp-objects without Composer
On this page you can find all versions of the php package mcguffin/acf-wp-objects. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mcguffin/acf-wp-objects
More information about mcguffin/acf-wp-objects
Files in mcguffin/acf-wp-objects
Package acf-wp-objects
Short Description Integrating WordPress and ACF
License GPL-3.0-or-later
Homepage https://github.com/mcguffin/acf-wp-object.git
Informations about the package acf-wp-objects
ACF-WP-Objects
Filling some gaps between WordPress and ACF.
Features
Integrate WordPress Objects objects into ACF.
- Edit WP-Post properties with ACF fields:
- Settings: blogname
- Settings: blogdescription
- Post: post_title
- Post: post_excerpt
- Post: post_content
- Post: post_thumbnail
- Post: attachments
- Term: term_name
- Term: term_description
- Theme-Mod: custom_logo
- New Field types:
- Post Type
- Taxonomy
- Image Size
- Includer (include all fields from a different field group)
- User Role
- Sweet Spot (use with media)
- Plugin Template Select (Selector for template file from plugin)
- New Location Rules:
- Post Type / Taxonomy is public / builtin / show_ui / show_in_menu / show_in_nav_menus
- Post type supports
- Editor is Classic / Block editor
- WP Options page is General / Writing / Reading / Discussion / Media / Permalinks
- Plugin Template Settings
- Everywhere
- Choice fields: get choices from a repeater, e.g. from an ACF options page
- Multisite:
- Add a network admin page with
acf_add_options_(sub_)page()
. Add"network" => true,
to the page args (ACF Pro only – both plugins must be network-enabled)
- Add a network admin page with
- Styling:
- More compact styles in block editor sidebar
- Add classes
no-head
andno-sort
to repeaters - Add classes
seamless
andno-label
to fields - Add class
button-group
to checkboxes (make them look like button groups)
- Page Layouts: Generic flexible content field providing a location rule for field groups. Init
acf_add_page_layout('foobar')
, render withacf_page_layouts('foobar')
- JSON-Paths: Save Field group JSON in custom places (like plugins)
- Localization: Localize ACF Field labels through po-files
- ACF Options Page: Optionally for Reset, Export and Import in the Backend and from WPCLI.
- Tab Field Open a tab by URL. Just append
#Tab Label
Installation
Production (using Github Updater – recommended for Multisite)
- Head over to releases
- Download 'acf-wp-objects.zip'
- Upload and activate it like any other WordPress plugin
- AutoUpdate will run as long as the plugin is active
Development
- cd into your plugin directory
- $
git clone [email protected]:mcguffin/acf-wp-objects.git
- $
cd acf-wp-objects
- $
npm install
- $
npm run dev
JSON-Paths
Consider the follwing Scenario: You are using local json field groups in your theme. You want to override them in a child theme. Or alternatively, you have a plugin with an ACF dependency, incorporating field groups as local json.
This will load and save ACF JSON from the subdirectory path/to/json-files
inside the theme and child theme directory but only if the field group key is group_my_fieldgroup_key
.
Sweet Spot Field
An easy way to choose the right clipping for images having object-fit: cover
.
The easyest way to enable the Sweet Spot feature for all images is the following bit of php code, living in your Theme's functions.php
or in a mu-plugin.
The plugin will then register a field group for image attachments including a sweet spot field and in the frontend add an inline style rule to the image attributes, e.g. object-position: 12.3% 81.4%;
.
JSON I18n
ACF provides support for WPML to localize Field groups.
ACF WP Objects offers a different approach through .po
files.
If you are using local json, here is a node script allowing you to extract the strings src/run/json-i18n.js
and add them to a pot file:
Install WP CLI.
Place src/run/json-i18n.js
and src/run/lib/json-extract.js
in your package directory.
Extract strings from json files and add them to a PHP file:
Generate pot with WP CLI:
Template Files (ACF Pro only)
- Filter template types
WP Objects will scan for template files having a header key in theme and plugin locations.
- Create a Template select field with name
my_fabulous_template
. Use it like this:get_template_part( get_field('my_fabulous_template') );
- Place some template files in location
Page layouts (ACF Pro only)
Generate a flexible content field and turn field groups to Layouts. Ideal if you need an extendible Set of Layouts to choose from.
-
Add a layout section:
- Create field groups. Set "Page Layouts" "equals" "My Layout" as a location, and enter a row layout slug at the very bottom.
- Create template files in your theme corresponding to the slugs chosen above. Filenames should match
acf/layout-<row_layout_slug>.php
. Don't forget to useget_sub_field()
, you are inside a flexible content field! - In your page.php template file call this inside the loop:
Repeater Choices with repeater row return
ACF doesn't load the field groups in the frontend by default. To retrieve the value of a Repeater Choice in the frontend, ACF has to know about this.
You can achieve this by adding do_action( 'acf_wpo_load_fields' );
ACF Options Page
Some new options for acf_add_options_page()
and acf_add_options_sub_page()
.
Args
import
Boolean
Enable Import featureimport_message
String
Message after sucessful importimport_error_message
String
Message after failed importimport_button
String
Import button labelimport_select_file
String
Import file input labelexport
Boolean|Array
Enable export feature.true
will simply export values from the current options page. Passing an array of options page IDs will export from multiple options pages at onceexport_references
Boolean
Whether to export referenced content like posts, images or termsexport_button
String
Export button labelreset
Boolen|String
Enable reset feature. Passing the path to a valid import file will import it.reset_message
String
Message after a sucessful resetreset_button
String
Reset button label
Examples
Enable import and export.
Enable reset too.
Enable reset and get values from an export file.
WP-CLI
Create an export file
Import options from file
Reset options page.
Regardless of the configuration passed to acf_add_options_page()
this will not import the values from a file. Use wp acf-options-page import
to do so.