Manual Integration
This method involves generating the integration code from your MotaWord dashboard and adding it to your WordPress theme’s header.php
file.
-
Generate Integration Code:
-
Go to your MotaWord dashboard and navigate to
https://www.motaword.com/dashboard/active/{widgetId}/config
(replace{widgetId}
with your actual Widget ID). -
Configure the settings as required.
-
Copy the generated code snippet provided at the bottom of the configuration page. It should look similar to this:
<link rel="preconnect" href="https://serve.motaword.com"> <link rel="preload" href="https://serve.motaword.com/js/38-299.js" as="script" importance="high" crossorigin referrerpolicy="unsafe-url"> <link rel="preconnect" href="https://api.motaword.com"> <script src="https://serve.motaword.com/js/38-299.js" data-token="{token}" crossorigin async referrerpolicy="unsafe-url"></script>
-
-
Add Code to WordPress:
- Log in to your WordPress admin dashboard.
- Navigate to
Appearance > Theme File Editor
. In never versions, it can be found underTools > Theme File Editor
. - In the Theme File Editor, select your theme and locate the
header.php
file.
-
Insert the Code:
- Paste the copied code snippet before the closing
</head>
tag in theheader.php
file.
- Paste the copied code snippet before the closing
-
Save Changes:
- Save the changes to the
header.php
file. - Beware that if you update theme header file later on the addition code you added can be lost or break, in that case please re-follow these steps and set up the integration.
- Save the changes to the
By following these steps, the MotaWord integration code will be added to your WordPress site manually.
Updated 5 months ago