Include content the way YOU like in an iframe that can hide and modify elements, does auto-height, forward parameters and does many, many more...
Prioritized issue groups from the latest Plugin Check scan
Maintainability
988
16 issue groups
Security
958
7 issue groups
I18n
30
2 issue groups
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$accountUrl".
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$accountUrl'.
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "aiCreateFile".
Sample message
Detected usage of a non-sanitized input variable: $_GET[$param]
Sample message
$_GET[$param] not unslashed before sanitization. Use wp_unslash() or similar
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST[$item]. Check that the array index exists before using it.
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Sample message
Processing form data without nonce verification.
Sample message
Translatable string should not be wrapped in HTML. Found: '<b>Url</b>'
Sample message
Processing form data without nonce verification.
Sample message
The $text parameter must be a single text string literal. Found: '<div id="browser-help">\n <p>\n Modern website designs are not pixel based anymore and depending on the features of the browser they also look slightly different. So if you use the "Show only part of the iframe" feature it is possible that the area you want to cut out of the website is at a slightly different place. You can also use the browser detection to show different iframes for different browsers or even mobile devices.\n </p>\n <h3>Setup</h3>\n <p>\n If you want to have different iframe configurations depending on the browser you have to use the shortcode attribute <strong>browser=""</strong> and define the browsers there which should be used for this shortcode. See the different <a href="#config-options">configuration options</a> below. You can define several browsers by separating them by, and even define browser versions by adding the versions with (version). Each of the shortcodes which are browser dependent need to have the <strong>same id</strong>! The last shortcode should have the attribute browser="default". This is then used if no browser does match before. If you don\'t do this you can show iframes only for a specific browser.\n </p>\n <h4>Example 1 - Special settings for IE 10 and IE 11</h4>\n <p>\n [advanced_iframe ' . $securitykeyString . 'id="example1" show_part_of_iframe_x="25" browser="ie(10),ie(11)"]<br />\n [advanced_iframe ' . $securitykeyString . 'id="example1" show_part_of_iframe_x="20" browser="default"]\n </p>\n <h4>Example 2 - Special settings for Edge, Firefox and Chrome</h4>\n <p>\n [advanced_iframe ' . $securitykeyString . 'id="example2" show_part_of_iframe_x="25" browser="edge"]<br />\n [advanced_iframe ' . $securitykeyString . 'id="example2" show_part_of_iframe_x="23" browser="firefox,chrome"]<br />\n [advanced_iframe ' . $securitykeyString . 'id="example2" show_part_of_iframe_x="20" browser="default"]\n </p>\n <h4>Example 3 - Show a different iframe on iframe on apple devices and mobile devices</h4>\n <p>\n [advanced_iframe ' . $securitykeyString . 'id="example3" src="apple iframe" browser="iphone,ipad,ipod"]<br />\n [advanced_iframe ' . $securitykeyString . 'id="example3" src="other mobile devices iframe" browser="mobile"]<br />\n [advanced_iframe ' . $securitykeyString . 'id="example3" src="normal iframe" browser="default"]\n </p>\n\n <h3 id="config-options">Configuration options</h3>\n \n The following options for most common browsers can be used:\n <ul id="browser-list">\n <li>ie - Selects all versions of Internet Explorer. Also, a version is supported. ie(10) selects IE10, ie(11) selects IE11</li>\n <li>safari - Selects all versions of Safari. Also, a version is supported. Add the version in (). e.g. safari(5)</li>\n <li>firefox - Selects all versions of Firefox. Also, a version is supported. Add the version in (). e.g. firefox(20)</li>\n <li>chrome - Selects all versions of Chrome. Also, a version is supported. Add the version in (). e.g. chrome(25)</li>\n <li>opera - Selects all versions of Opera. Also, a version is supported. Add the version in (). e.g. opera(20)</li>\n <li>edge - Selects all versions of Edge. Also, a version is supported. Add the version in (). e.g. edge(120)</li>\n <li>ipad - Selects all versions of ipad.</li>\n <li>ipod - Selects all versions of ipod.</li>\n <li>iphone - Selects all versions of iphone.</li>\n <li>mobile - Selects all mobile devices.</li>\n <li>tablet - Selects all tablet devices.</li>\n <li>android - Selects all android devices.</li>\n <li>androidtablet - Selects all android tablet devices.</li>\n <li>desktop - Selects all desktop browsers.</li>\n <li>browser - Selects all browsers. Desktop, tablet and mobile. Can be used to show something only for browsers and e.g. for crawlers you can use the default and show nothing.</li>\n <li>default - Is used if no other advanced iframe pro with the same id was selected before.</li>\n </ul>\n\n <h3>Credit and update</h3>\n <p>\n Advanced iFrame Pro uses an integrated browser detection which is based on the WordPress plugin php-browser-detection 3.2.\n </p>\n <p>\n If the automatic update does not work you can get an updated version of the browsercap.ini lite file here: https://browscap.org/<br />Please use the light version as it contains all settings for the provided settings !\n </p>\n <p>\n If you want to update the browser detection file get the lite_php_browscap.ini from there, rename it to browscap.ini and place it in the ../includes/php-browser-detection/cache/ folder of the plugin<br />\n Or always get the latest version of the advanced iframe pro plugin. This file is also updated there!\n </p>\n </div>\n '
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
Sample message
Plugin folders are deleted when upgraded. Do not save data to the plugin folder using copy(). Detected usage of __FILE__ or __DIR__ magic constant. Use wp_upload_dir() to get the uploads directory path or save to the database instead.
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "AIP_IMGURL".
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
Sample message
In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
Sample message
Scripts must be registered/enqueued via wp_enqueue_script()
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "ai_fs_loaded".
Not analyzed yet.
First score snapshot
v2026.2
24
Latest
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 2,007 | 887 | 1,120 | v2026.2 | 2.0.0 |
Author, categories, issues, domains, and nearby plugins.