PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / 6.8.9
Secure Custom Fields v6.8.9
6.9.0 6.8.9 6.8.7 6.8.8 6.8.6 6.8.4 6.8.5 trunk 6.4.0-beta1 6.4.0-beta2 6.4.1 6.4.1-beta3 6.4.1-beta4 6.4.1-beta5 6.4.1-beta6 6.4.1-beta7 6.4.2 6.5.0 6.5.1 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6 6.5.7 6.6.0 6.7.0 6.7.1 6.8.0 6.8.1 6.8.2 6.8.3
secure-custom-fields / includes / Meta / Comment.php
secure-custom-fields / includes / Meta Last commit date
Comment.php 1 year ago MetaLocation.php 1 year ago Option.php 1 year ago Post.php 1 year ago Term.php 1 year ago User.php 1 year ago WooOrder.php 1 year ago
Comment.php
24 lines
1 <?php
2 /**
3 * Adds support for saving/retrieving values from comment meta.
4 *
5 * @package SCF
6 * @subpackage Meta
7 * @since SCF 6.5
8 */
9
10 namespace SCF\Meta;
11
12 /**
13 * A class to add support for saving to comment meta.
14 */
15 class Comment extends MetaLocation {
16
17 /**
18 * The unique slug/name of the meta location.
19 *
20 * @var string
21 */
22 public string $location_type = 'comment';
23 }
24