Post.php
349 Bytes
<?php
namespace ACP\Search\Query\Bindings;
use ACP\Search\Query\Bindings;
class Post extends Bindings
{
protected $tax_query = [];
public function get_tax_query(): array
{
return $this->tax_query;
}
public function tax_query(array $args): self
{
$this->tax_query = $args;
return $this;
}
}