mirror of
https://github.com/mashirozx/sakura.git
synced 2024-11-14 10:58:12 +08:00
17 lines
254 B
PHP
17 lines
254 B
PHP
|
<?php
|
||
|
|
||
|
namespace Sakura\Controllers;
|
||
|
|
||
|
use Sakura\Controllers\BaseController;
|
||
|
|
||
|
/**
|
||
|
* Base controller for WP_Term
|
||
|
*/
|
||
|
class TermController extends BaseController
|
||
|
{
|
||
|
public static function get_terms(int $post_id)
|
||
|
{
|
||
|
return get_terms($post_id);
|
||
|
}
|
||
|
}
|