9 lines
197 B
PHP
9 lines
197 B
PHP
<?php
|
|
|
|
class SP_REST_Terms_Controller extends WP_REST_Terms_Controller {
|
|
public function __construct( $taxonomy ) {
|
|
parent::__construct( $taxonomy );
|
|
$this->namespace = 'sportspress/v2';
|
|
}
|
|
}
|