ACF Pro: Upgrade from free, add Documents repeater field with download buttons

This commit is contained in:
Hanson.xyz Dev
2025-11-28 17:49:39 -06:00
parent be833efe62
commit 3c76e76068
641 changed files with 45247 additions and 14 deletions
@@ -0,0 +1,25 @@
<?php
/**
* @package ACF
* @author WP Engine
*
* © 2025 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
*/
namespace ACF\Meta;
/**
* A class to add support for saving to user meta.
*/
class User extends MetaLocation {
/**
* The unique slug/name of the meta location.
*
* @var string
*/
public string $location_type = 'user';
}