Skip to content

How to Insert Ad Spaces on WordPress

Once you have created an Ad Space, you can insert it anywhere on your WordPress site using shortcodes, page builders, or theme templates.


Every ad space generates a unique shortcode formatted as:

[ad-fuz ad_space_id="17"]

(Replace 17 with your actual Ad Space ID from the Ad Spaces Manager).


Insertion Methods by Editor / Page Builder

Section titled “Insertion Methods by Editor / Page Builder”
  1. Open any Post or Page in the WordPress Block Editor.
  2. Click the + (Add Block) icon where you want the ad to appear.
  3. Search for the Shortcode block.
  4. Paste your shortcode: [ad-fuz ad_space_id="17"].
  5. Save or Update your post.

Ad spaces are wrapped in a responsive CSS container with the ID adfuz-space-XX. You can center or add custom margins via your theme’s customizer if desired:

/* Center an AdFuz ad container on the frontend */
.adfuz-ad-space-container {
display: flex;
justify-content: center;
align-items: center;
margin: 1.5rem auto;
}