STFQ WP Iframe is a versatile tool for WordPress that allows users to embed customizable iframes into their posts and pages using a simple shortcode. This plugin offers a range of features to ensure flexibility, responsiveness, and security.
Key Features:
- Customizable Width and Height:
- Users can specify the
width
andheight
attributes to control the dimensions of the iframe.
- Users can specify the
- Responsive Iframes:
- The iframe is wrapped in a div with CSS styles to maintain a responsive aspect ratio, ensuring the iframe adjusts to different screen sizes.
- Security Features:
- The plugin includes a whitelist of allowed domains to prevent embedding potentially harmful sites.
- The
sandbox
attribute can be specified to restrict the iframe’s capabilities for added security.
- Lazy Loading:
- The iframe includes the
loading="lazy"
attribute, which defers loading of the iframe until it is near the viewport, improving page load performance.
- The iframe includes the
- Error Handling:
- Provides user-friendly error messages if no URL is provided or if the URL is not from an allowed domain.
Usage:
To embed an iframe, use the following shortcode in your WordPress post or page:
[custom_iframe url="https://example.com" width="800" height="600" sandbox="allow-same-origin allow-scripts"]
Shortcode Attributes:
url
: The URL of the page to be embedded in the iframe.width
: (Optional) The width of the iframe (default is 600).height
: (Optional) The height of the iframe (default is 400).fullwidth
: (Optional) Set to true to make the iframe full width of its container (default is false).sandbox
: (Optional) Specifies the sandboxing rules for the iframe content.
Example:
[custom_iframe url="https://example.com" width="800" height="600" sandbox="allow-same-origin allow-scripts"]
How to use STFQ WP Iframe
Description
The STFQ WP Iframe plugin allows users to embed customizable iframes into WordPress posts and pages using a shortcode. This plugin provides flexibility, responsiveness, and security features to ensure a seamless embedding experience.
Features
- Customizable width and height.
- Responsive iframes.
- Security with domain whitelisting.
- Lazy loading for better performance.
- Error handling for user-friendly messages.
- Sandbox attribute for enhanced security.
Installation
- Download the Plugin:
- Download the STFQ WP Iframe plugin zip file.
- Upload to WordPress:
- Navigate to your WordPress dashboard.
- Go to Plugins > Add New.
- Click Upload Plugin and choose the downloaded zip file.
- Click Install Now and then Activate the plugin.
- Manual Installation:
- Unzip the downloaded plugin file.
- Upload the extracted folder to the
/wp-content/plugins/
directory on your server. - Navigate to the Plugins menu in WordPress and activate the plugin.
Usage
To embed an iframe, use the following shortcode in your posts or pages:
[custom_iframe url="https://example.com" width="800" height="600" sandbox="allow-same-origin allow-scripts"]
Shortcode Attributes
url
: (Required) The URL of the page to be embedded in the iframe.width
: (Optional) The width of the iframe (default is 600).height
: (Optional) The height of the iframe (default is 400).fullwidth
: (Optional) Set to true to make the iframe full width of its container (default is false).sandbox
: (Optional) Specifies the sandboxing rules for the iframe content.
Example
Here’s an example of how to use the shortcode with all attributes:
[custom_iframe url="https://example.com" width="800" height="600" sandbox="allow-same-origin allow-scripts"]
Allowed Domains
The plugin includes a commented whitelist of allowed domains to ensure security. By default, it allows the following domains:
- example.com
- anotherdomain.com
You can modify the list of allowed domains by editing the plugin code where the $allowed_domains
array is defined; additionally, uncomment the line of code (remove the “//” at the front of the line) to activate the feature:
$allowed_domains = array('example.com', 'anotherdomain.com');
Error Handling
If the url
attribute is not provided or if the URL is not from an allowed domain, the plugin will display a user-friendly error message.
License
This plugin is licensed under the GNU General Public License v3.0. For more details, see the GPLv3 license.
This plugin is designed to be simple yet powerful, providing essential iframe embedding functionality while maintaining high standards of security and performance.