Introduction

To use the site module, import * as wixSiteSite from the @wix/site-site module:

Copy
import * as wixSiteSite from "@wix/site-site";

The APIs in @wix/site-site can only be used in front-end code.

Did this help?

currency( )


Gets a code representing the site's currency.

The retrieved currency code corresponds to the currency that has been entered in the General Info section of your site's Dashboard.

The currency is used your site, apps (e.g. Wix Stores, Wix Bookings), and other Wix features.

Method Declaration
Copy
function currency(): Promise<string>;
Request
This method does not take any parameters
Returns
Return Type:Promise<string>
Get the site's currency
JavaScript
import { site } from "@wix/site-site"; // ... const currency = await site.currency(); // "USD"
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

currentPage( )


Gets information about the current page or lightbox.

Method Declaration
Copy
function currentPage(): Promise<StructurePage>;
Request
This method does not take any parameters
Returns
Return Type:Promise<StructurePage>
JavaScript
import { site } from "@wix/site-site"; // ... const currentPage = await site.currentPage(); /* Promise resolves to: * { * "name": "Home", * "type": "static", * "url": "/home", * "isHomePage": true * } */
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?