1. Go to this page and download the library: Download mcguffin/acf-wp-objects library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mcguffin / acf-wp-objects example snippets
acf_register_local_json(
'path/to/json-files', // e.g. 'acf-json' in a theme
function( $field_group ) {
// callback
// return true, if the field group JSON
// should be saved at the given location
return $field_group['key'] === 'group_my_fieldgroup_key';
},
[ // parent paths to check
get_template_directory(),
get_stylesheet_directory(),
]
);
acf_localize_field_groups(
'my-textdomain',
function( $field_group ) {
// callback which should return true, if the field group
// localization is available under the given textdomain
return $field_group['key'] === 'group_my_fieldgroup_key';
});
add_filter('acf_wp_objects_template_types', function( $types ) {
$slug = 'foo-plugin';
$key = 'Items Template';
$theme_location = 'foo-plugin';
// will point to wp-content/themes/<current-theme>/foo-plugin/
// default: $slug
$plugin_location = 'templates';
// will point to wp-content/plugins/foo-plugin/templates/
// null: use default, false: no plugin location, string: custom location inside plugin
$types[ $slug ] = [
'header_key' => $key,
'theme_location' => $theme_location,
'plugin_location' => $plugin_location,
];
return $types;
});
/*
Items Template: List
*/
$settings = get_field('my_fabulous_template_settings');