mirror of
https://github.com/mashirozx/sakura.git
synced 2024-11-13 18:38:14 +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);
|
|
}
|
|
}
|