helix/admin/rest-routes.php

14 lines
378 B
PHP
Raw Normal View History

2025-08-01 08:00:35 +05:30
<?php
add_action('rest_api_init', function () {
register_rest_route('helix/v1', '/settings', [
'methods' => 'GET',
'permission_callback' => '__return_true',
'callback' => function () {
return [
'siteTitle' => get_option('blogname'),
'language' => get_option('WPLANG'),
];
}
]);
});