Documentation

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

  1. Go to your Portfolio and click on the model you want to embed.
  2. In the preview dialog, click the <> (Embed) icon and copy the code snippet.
  3. In your WordPress admin dashboard, navigate to the page or post where you want to add the model (or create a new one).
  4. In the WordPress editor, click the plus (+) icon to add a new block. Search for and select the Custom HTML block.
  5. Paste your copied code snippet into the Custom HTML block that appears.
  6. You can adjust the `height` and `width` in the code to fit your layout. Set width to `100%` to make it responsive.
  7. 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>