|
1
|
<?php |
|
2
|
|
|
3
|
declare(strict_types=1); |
|
4
|
|
|
5
|
namespace AC\Formatter\Term; |
|
6
|
|
|
7
|
use AC; |
|
8
|
use AC\MetaType; |
|
9
|
|
|
10
|
class Meta extends AC\Formatter\Meta |
|
11
|
{ |
|
12
|
|
|
13
|
public function __construct(string $meta_key) |
|
14
|
{ |
|
15
|
parent::__construct(MetaType::create_term_meta(), $meta_key); |
|
16
|
} |
|
17
|
|
|
18
|
}
|