WordPress: Single Model Embed
Embed a specific interactive 3D model anywhere on your WordPress site. This is perfect for landing pages, promotional sections, or blog posts.
How to Embed a Single Model
WordPress.com Plan Required
Embedding with an <iframe> requires a WordPress.com plugin-enabled plan. This method may not work on free or personal plans. Self-hosted WordPress sites do not have this restriction.
- Go to your Portfolio and click on the model you want to embed.
- In the preview dialog, click the <> (Embed) icon and copy the code snippet.
- In your WordPress admin dashboard, navigate to the page or post where you want to add the model (or create a new one).
- In the WordPress editor, click the plus (+) icon to add a new block. Search for and select the Custom HTML block.
- Paste your copied code snippet into the Custom HTML block that appears.
- You can adjust the `height` and `width` in the code to fit your layout. Set width to `100%` to make it responsive.
- Click Update or Publish. Your model is now live!
Sample Code Snippet
Your copied code will look like this. The `YOUR_USER_ID` and `YOUR_MODEL_ID` will be automatically filled in for you.
<iframe
src="https://embed.dezyn.app/v1?uid=YOUR_USER_ID&model_id=YOUR_MODEL_ID"
width="100%"
height="600"
frameBorder="0">
</iframe>