# advanced-custom-fields/6.8.2/src/Meta/Post.php

Advanced Custom Fields (ACF®), version 6.8.2. 26 lines.

- Page: https://pluginprobe.com/plugins/advanced-custom-fields/6.8.2/code/src/Meta/Post.php
- Raw: https://pluginprobe.com/plugins/advanced-custom-fields/6.8.2/raw/src/Meta/Post.php
- Modified: 2026-03-03T18:16:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/advanced-custom-fields/6.8.2/code/src/Meta/Post.php#L10-L20`.

```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
 */

namespace ACF\Meta;

/**
 * A class to add support for saving to standard post meta.
 */
class Post extends MetaLocation {

	/**
	 * The unique slug/name of the meta location.
	 *
	 * @var string
	 */
	public string $location_type = 'post';
}

```
