To use the site module, import * as wixSiteSite
from the @wix/site-site
module:
The APIs in @wix/site-site
can only be used in front-end code.
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.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Gets information about the current page or lightbox.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Gets the site display name.
Retrieves the site display name, which is the name that has been entered in the Website Settings section of the site's Dashboard.
function getSiteDisplayName(): Promise<string>;
import { site } from "@wix/site-site";
const siteName = await site.getSiteDisplayName(); // "My Site"
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.