Files
homeproz/wp-content/plugins/advanced-custom-fields-pro/src/Meta/Comment.php
T
Hanson.xyz Dev 5e2bb8585a Initialize beads issue tracking and update git policy
- Initialize beads (.beads/ directory)
- Add Claude Code hooks for SessionStart/PreCompact
- Update CLAUDE.md to clarify all build artifacts are committed
- Update .gitignore to allow node_modules and dist
2025-11-30 01:55:50 -06:00

26 lines
508 B
PHP
Executable File

<?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 comment meta.
*/
class Comment extends MetaLocation {
/**
* The unique slug/name of the meta location.
*
* @var string
*/
public string $location_type = 'comment';
}