Post and Page Builder is a standalone plugin which adds functionality to the existing TinyMCE Editor.
Category Scores
Top Issues by Category
security358
i18n147
maintainability94
Issues Details
606 issues found in latest scan
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$align'.
Mismatched text domain. Expected 'post-and-page-builder' but got 'boldgrid-builder'.
Processing form data without nonce verification.
Processing form data without nonce verification.
$_GET['post_type'] not unslashed before sanitization. Use wp_unslash() or similar
Detected usage of a non-sanitized input variable: $_GET['post_type']
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$allowed_tags".
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them.
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'bgppb_form_' . $action".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found interpolation in unescaped heredoc.
Detected usage of a possibly undefined superglobal array index: $_POST['boldgrid_gridblock_image_ajax_nonce']. Check that the array index exists before using it.
Resource version not set in call to wp_enqueue_style(). This means new versions of the style may not always be loaded due to browser caching.
The $text parameter must be a single text string literal. Found: 'Failed to activate the Post and Page Builder! Your PHP version is not compatible. This plugin requires at least PHP ' . $this->versions['php']
Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead
The use of function set_time_limit() is discouraged
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bgppb_autoload".
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
Found usage of constant "STYLESHEETPATH". Use get_stylesheet_directory() instead.
Found usage of constant "TEMPLATEPATH". Use get_template_directory() instead.
In footer ($in_footer) is not set explicitly wp_register_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.
A function call to esc_html__() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$align'. | 142 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'post-and-page-builder' but got 'boldgrid-builder'. | 136 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 57 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 57 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['post_type'] not unslashed before sanitization. Use wp_unslash() or similar | 41 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_GET['post_type'] | 33 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$allowed_tags". | 32 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 29 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 22 |
| Internal.NoCodeFound | WARNING | No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them. | 16 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'bgppb_form_' . $action". | 8 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 8 |
| WordPress.Security.EscapeOutput.HeredocOutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found interpolation in unescaped heredoc. | 3 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_POST['boldgrid_gridblock_image_ajax_nonce']. Check that the array index exists before using it. | 2 |
| WordPress.WP.EnqueuedResourceParameters.MissingVersion | WARNING | Resource version not set in call to wp_enqueue_style(). This means new versions of the style may not always be loaded due to browser caching. | 2 |
| WordPress.WP.I18n.NonSingularStringLiteralText | ERROR | The $text parameter must be a single text string literal. Found: 'Failed to activate the Post and Page Builder! Your PHP version is not compatible. This plugin requires at least PHP ' . $this->versions['php'] | 2 |
| PluginCheck.CodeAnalysis.Heredoc.NotAllowed | ERROR | Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead | 1 |
| Squiz.PHP.DiscouragedFunctions.Discouraged | WARNING | The use of function set_time_limit() is discouraged | 1 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bgppb_autoload". | 1 |
| WordPress.Security.SafeRedirect.wp_redirect_wp_redirect | WARNING | wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed. | 1 |
| WordPress.WP.AlternativeFunctions.parse_url_parse_url | ERROR | parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead. | 1 |
| WordPress.WP.DiscouragedConstants.STYLESHEETPATHUsageFound | ERROR | Found usage of constant "STYLESHEETPATH". Use get_stylesheet_directory() instead. | 1 |
| WordPress.WP.DiscouragedConstants.TEMPLATEPATHUsageFound | ERROR | Found usage of constant "TEMPLATEPATH". Use get_template_directory() instead. | 1 |
| WordPress.WP.EnqueuedResourceParameters.NotInFooter | WARNING | In footer ($in_footer) is not set explicitly wp_register_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. | 1 |
| WordPress.WP.I18n.MissingTranslatorsComment | ERROR | A function call to esc_html__() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders. | 1 |
Latest Snapshot
Findings
606
Errors
348
Warnings
258
Score History
First score snapshot
First scan completed Jun 20, 2026
v1.27.11 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v1.27.11
32
Latest
- Findings
- 606
- Errors
- 348
- Warnings
- 258
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 32 | 606 | 348 | 258 | v1.27.11 | 2.0.0 | 2026.06-mvp-static-v2 |