/home/vianto5/duettowers.mx/wp-content/themes/hello-elementor/modules/admin-home/rest
Edit: /home/vianto5/duettowers.mx/wp-content/themes/hello-elementor/modules/admin-home/rest/whats-new.php (654B)
get_component( 'Notificator' );
return $notificator->get_notifications_by_conditions();
}
public function register_routes() {
register_rest_route(
self::ROUTE_NAMESPACE,
'/whats-new',
[
'methods' => \WP_REST_Server::READABLE,
'callback' => [ $this, 'get_notifications' ],
'permission_callback' => [ $this, 'permission_callback' ],
]
);
}
}