🏠 Root
/
home
/
artorgp
/
www
/
wp-content
/
plugins
/
advanced-custom-fields
/
includes
/
admin
/
views
/
acf-field-group
/
Editing: locations.php
<?php /** * @package ACF * @author WP Engine * * © 2026 Advanced Custom Fields (ACF®). All rights reserved. * "ACF" is a trademark of WP Engine. * Licensed under the GNU General Public License v2 or later. * https://www.gnu.org/licenses/gpl-2.0.html */ // global global $field_group; ?> <div class="acf-field"> <div class="acf-label"> <label><?php esc_html_e( 'Rules', 'acf' ); ?></label> <i tabindex="0" class="acf-icon acf-icon-help acf-js-tooltip" title="<?php esc_attr_e( 'Create a set of rules to determine which edit screens will use these advanced custom fields', 'acf' ); ?>">?</i> </div> <div class="acf-input"> <div class="rule-groups"> <?php foreach ( $field_group['location'] as $i => $group ) : // bail early if no group if ( empty( $group ) ) { return; } // view acf_get_view( 'acf-field-group/location-group', array( 'group' => $group, 'group_id' => "group_{$i}", ) ); endforeach; ?> <h4><?php esc_html_e( 'or', 'acf' ); ?></h4> <a href="#" class="button add-location-group"><?php esc_html_e( 'Add rule group', 'acf' ); ?></a> </div> </div> </div> <script type="text/javascript"> if( typeof acf !== 'undefined' ) { acf.newPostbox({ 'id': 'acf-field-group-locations', 'label': 'left' }); } </script>
Save
Cancel