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 |