WordPress Integration Guide

Embed ReadSafety
on WordPress

This guide explains how to embed ReadSafety.com educational tools on any WordPress website. A valid license is required for commercial use.


Method 1 - HTML Block (Recommended)

In the WordPress block editor (Gutenberg), add a Custom HTML block and paste the following code:

<!-- ISO 9001 Quality Management Guide -->
<iframe 
  src="https://readsafety.com/iso/9001"
  width="100%" 
  height="850"
  frameborder="0"
  style="border:none; border-radius:8px;"
  title="ISO 9001 Quality Management  -  ReadSafety.com"
  loading="lazy">
</iframe>

Method 2 - Shortcode (Classic Editor)

Add this to your theme's functions.php to enable iframe shortcodes:

// Add to functions.php
function readsafety_iframe_shortcode($atts) {
  $atts = shortcode_atts(array(
    'src'    => '',
    'height' => '850',
    'title'  => 'ReadSafety.com Educational Tool',
  ), $atts);
  
  return '<iframe src="' . esc_url($atts['src']) . '" 
    width="100%" height="' . esc_attr($atts['height']) . '" 
    frameborder="0" loading="lazy"
    title="' . esc_attr($atts['title']) . '"></iframe>';
}
add_shortcode('readsafety', 'readsafety_iframe_shortcode');

Then use in any post or page:

[readsafety src="https://readsafety.com/iso/9001" height="850" title="ISO 9001 Guide"]
[readsafety src="https://readsafety.com/periodic-table" height="900" title="Periodic Table"]

Available Embed URLs

ISO 9001 (Quality Management):
  https://readsafety.com/iso/9001

ISO 14001 (Environmental Management):
  https://readsafety.com/iso/14001

ISO 45001 (Occupational Health & Safety):
  https://readsafety.com/iso/45001

ISO 27001 (Information Security):
  https://readsafety.com/iso/27001

ISO 42001 (AI Management Systems):
  https://readsafety.com/iso/42001

ISO 17024 (Personnel Certification):
  https://readsafety.com/iso/17024

ISO/IEC 17021-1 (Management System Auditing):
  https://readsafety.com/iso/17021

Interactive Periodic Table:
  https://readsafety.com/periodic-table

Licensing

Embedding ReadSafety.com content on commercial WordPress sites requires a valid commercial license. Public schools and nonprofits may embed for free with verification.

View licensing plans →

Questions? Email licensing@readsafety.com