{"id":19008654,"date":"2026-09-01T14:27:08","date_gmt":"2026-09-01T14:27:08","guid":{"rendered":"https:\/\/wordpress.org\/support\/topic\/code-analysis-errors\/"},"modified":"2026-09-01T14:27:08","modified_gmt":"2026-09-01T14:27:08","slug":"code-analysis-errors","status":"publish","type":"topic","link":"https:\/\/wordpress.org\/support\/topic\/code-analysis-errors\/","title":{"rendered":"Code analysis Errors"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">I created a PR for my staging environment and Code Analysis pulled 48 errors (and 52 warnings) . Version 5.2.11. My PHP is 8.3.33\u00a0<br \/><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>In plugins\/molongui-authorship\/includes\/admin\/admin-post.php:<br \/><br \/>&gt; +            if ( !Settings::get( 'post_as_others', false ) )<br \/>+            {<br \/>+                $user = Admin_User::instance();<br \/>+                if ( !$user-&gt;can_post_as_others() )<br \/>+                {<br \/>+                    $current_user = wp_get_current_user();<br \/>+                    $first_author = explode( '-', $new_post_authors&#091;0] );<br \/>+                    if ( $current_user-&gt;ID !== (int)$first_author&#091;1] )<br \/>+                    {<br \/>+                        $new_post_authors = array_merge( array( 'user-'.$current_user-&gt;ID ), $new_post_authors );<br \/>+                        $new_post_authors = array_unique( $new_post_authors );<br \/>+                        add_filter( 'redirect_post_location', function( $location )<br \/>+                        {<br \/>+                            return add_query_arg( 'posting-as-others', 'error', $location );<br \/>+                        });<br \/>+                        setcookie( 'ma_cannot_post_as_others', _x( \"You are not permitted to post on behalf of others. If you wish to remove your name as the post author, please contact the site administrator to enable that option for you.\", 'Error message displayed on the WP Block Editor', 'molongui-authorship' ), 0, '\/' );<br \/>\ud83d\udeab Error( severity 6 ): Due to server-side caching, server-side based client related logic might not work. We recommend implementing client side logic in JavaScript instead (WordPressVIPMinimum.Functions.RestrictedFunctions.cookies_setcookie).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-box-metabox.php:<br \/><br \/>&gt; +    &lt;!-- Display Settings --&gt;<br \/>+    &lt;div class=\"m-field\"&gt;<br \/>+        &lt;label class=\"m-title\" for=\"_molongui_guest_author_box_display\"&gt;&lt;strong&gt;&lt;?php _e( \"Display\", 'molongui-authorship' ); ?&gt;&lt;\/strong&gt;&lt;\/label&gt;<br \/>+        &lt;p class=\"m-description\"&gt;<br \/>+            &lt;?php _e( \"Choose whether to display the author box for this author regardless of other post or plugin settings\", 'molongui-authorship' ); ?&gt;<br \/>+            &lt;?php if ( !Plugin::has_pro() ) echo ' &lt;i&gt;'.sprintf( __( \"Disabled options are only available with the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ).'&lt;\/i&gt;'; ?&gt;<br \/>+        &lt;\/p&gt;<br \/>+        &lt;?php ob_start(); ?&gt;<br \/>+        &lt;select name=\"_molongui_guest_author_box_display\" id=\"_molongui_guest_author_box_display\"&gt;<br \/>+            &lt;option value=\"default\" &lt;?php selected( $guest_author_hide_box, 'default' ); ?&gt;&gt;&lt;?php _e( \"Default\", 'molongui-authorship' ); ?&gt;&lt;\/option&gt;<br \/>+            &lt;option value=\"show\"    &lt;?php selected( $guest_author_hide_box, 'show' ); disabled( !Plugin::has_pro() ); ?&gt;&gt;&lt;?php _e( \"Show\", 'molongui-authorship' ); ?&gt;&lt;\/option&gt;<br \/>+            &lt;option value=\"hide\"    &lt;?php selected( $guest_author_hide_box, 'hide' ); disabled( !Plugin::has_pro() ); ?&gt;&gt;&lt;?php _e( \"Hide\", 'molongui-authorship' ); ?&gt;&lt;\/option&gt;<br \/>+        &lt;\/select&gt;<br \/>+        &lt;?php<br \/>+        $select = ob_get_clean();<br \/>+        echo apply_filters( '_authorship\/guest\/box_display', $select );<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'apply_filters' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-convert-metabox.php:<br \/><br \/>&gt; @@ -0,0 +1,19 @@<br \/>+&lt;?php<br \/>+<br \/>+defined( 'ABSPATH' ) or exit; \/\/ Exit if accessed directly<br \/>+?&gt;<br \/>+<br \/>+&lt;div class=\"molongui-metabox\"&gt;<br \/>+<br \/>+    &lt;div class=\"m-field\"&gt;<br \/>+        &lt;label class=\"m-title\"&gt;&lt;strong&gt;&lt;?php _e( \"Convert to User\", 'molongui-authorship' ); ?&gt;&lt;\/strong&gt;&lt;\/label&gt;<br \/>+        &lt;p class=\"m-description\"&gt;<br \/>+            &lt;?php _e( \"Convert this guest author to a registered WP user with just 1-click. Current guest will be removed and a new user created. Posts authorship will be kept.\", 'molongui-authorship' ); ?&gt;<br \/>+        &lt;\/p&gt;<br \/>+        &lt;a class=\"button button-large button-disabled\"&gt;&lt;?php _e( \"Convert\", 'molongui-authorship' ); ?&gt;&lt;\/a&gt;<br \/>+        &lt;div class=\"pro-note\"&gt;<br \/>+            &lt;?php printf( __( \"This option is only available in the %sPRO version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'MOLONGUI_AUTHORSHIP_WEB' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-convert-metabox.php:<br \/><br \/>&gt; @@ -0,0 +1,19 @@<br \/>+&lt;?php<br \/>+<br \/>+defined( 'ABSPATH' ) or exit; \/\/ Exit if accessed directly<br \/>+?&gt;<br \/>+<br \/>+&lt;div class=\"molongui-metabox\"&gt;<br \/>+<br \/>+    &lt;div class=\"m-field\"&gt;<br \/>+        &lt;label class=\"m-title\"&gt;&lt;strong&gt;&lt;?php _e( \"Convert to User\", 'molongui-authorship' ); ?&gt;&lt;\/strong&gt;&lt;\/label&gt;<br \/>+        &lt;p class=\"m-description\"&gt;<br \/>+            &lt;?php _e( \"Convert this guest author to a registered WP user with just 1-click. Current guest will be removed and a new user created. Posts authorship will be kept.\", 'molongui-authorship' ); ?&gt;<br \/>+        &lt;\/p&gt;<br \/>+        &lt;a class=\"button button-large button-disabled\"&gt;&lt;?php _e( \"Convert\", 'molongui-authorship' ); ?&gt;&lt;\/a&gt;<br \/>+        &lt;div class=\"pro-note\"&gt;<br \/>+            &lt;?php printf( __( \"This option is only available in the %sPRO version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-short-bio-metabox.php:<br \/><br \/>&gt; @@ -0,0 +1,18 @@<br \/>+&lt;?php<br \/>+<br \/>+defined( 'ABSPATH' ) or exit; \/\/ Exit if accessed directly<br \/>+?&gt;<br \/>+<br \/>+&lt;div class=\"molongui-metabox\"&gt;<br \/>+<br \/>+    &lt;div class=\"m-field\"&gt;<br \/>+        &lt;p class=\"m-description\"&gt;<br \/>+            &lt;?php _e( 'Provide a short description that can be displayed on the author box instead of the full author biography. On author archive pages full bio is displayed, if your theme supports it.', 'molongui-authorship' ); ?&gt;<br \/>+        &lt;\/p&gt;<br \/>+        &lt;?php wp_editor( '', '_premium_short_bio_field', array( 'tinymce' =&gt; array( 'readonly' =&gt; true ), 'quicktags' =&gt; false, 'media_buttons' =&gt; false, 'teeny' =&gt; true, \/*'editor_height' =&gt; 100,*\/ 'textarea_rows' =&gt; 5 ) ); ?&gt;<br \/>\u26a0\ufe0f Warning( severity 5 ): This comment is 60% valid code; is this commented out code? (Squiz.PHP.CommentedOutCode.Found).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-short-bio-metabox.php:<br \/><br \/>&gt; @@ -0,0 +1,18 @@<br \/>+&lt;?php<br \/>+<br \/>+defined( 'ABSPATH' ) or exit; \/\/ Exit if accessed directly<br \/>+?&gt;<br \/>+<br \/>+&lt;div class=\"molongui-metabox\"&gt;<br \/>+<br \/>+    &lt;div class=\"m-field\"&gt;<br \/>+        &lt;p class=\"m-description\"&gt;<br \/>+            &lt;?php _e( 'Provide a short description that can be displayed on the author box instead of the full author biography. On author archive pages full bio is displayed, if your theme supports it.', 'molongui-authorship' ); ?&gt;<br \/>+        &lt;\/p&gt;<br \/>+        &lt;?php wp_editor( '', '_premium_short_bio_field', array( 'tinymce' =&gt; array( 'readonly' =&gt; true ), 'quicktags' =&gt; false, 'media_buttons' =&gt; false, 'teeny' =&gt; true, \/*'editor_height' =&gt; 100,*\/ 'textarea_rows' =&gt; 5 ) ); ?&gt;<br \/>+        &lt;div class=\"pro-note\"&gt;<br \/>+            &lt;?php printf( __( 'This option is only available in the %sPRO version%s of the plugin.', 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'MOLONGUI_AUTHORSHIP_WEB' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-short-bio-metabox.php:<br \/><br \/>&gt; @@ -0,0 +1,18 @@<br \/>+&lt;?php<br \/>+<br \/>+defined( 'ABSPATH' ) or exit; \/\/ Exit if accessed directly<br \/>+?&gt;<br \/>+<br \/>+&lt;div class=\"molongui-metabox\"&gt;<br \/>+<br \/>+    &lt;div class=\"m-field\"&gt;<br \/>+        &lt;p class=\"m-description\"&gt;<br \/>+            &lt;?php _e( 'Provide a short description that can be displayed on the author box instead of the full author biography. On author archive pages full bio is displayed, if your theme supports it.', 'molongui-authorship' ); ?&gt;<br \/>+        &lt;\/p&gt;<br \/>+        &lt;?php wp_editor( '', '_premium_short_bio_field', array( 'tinymce' =&gt; array( 'readonly' =&gt; true ), 'quicktags' =&gt; false, 'media_buttons' =&gt; false, 'teeny' =&gt; true, \/*'editor_height' =&gt; 100,*\/ 'textarea_rows' =&gt; 5 ) ); ?&gt;<br \/>+        &lt;div class=\"pro-note\"&gt;<br \/>+            &lt;?php printf( __( 'This option is only available in the %sPRO version%s of the plugin.', 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; @@ -0,0 +1,38 @@<br \/>+&lt;?php<br \/>+<br \/>+use Molongui\\Authorship\\Common\\Utils\\Plugin;<br \/>+<br \/>+defined( 'ABSPATH' ) or exit; \/\/ Exit if accessed directly<br \/>+<br \/>+?&gt;<br \/>+<br \/>+&lt;div class=\"molongui-metabox\"&gt;<br \/>+<br \/>+    &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php _e( \"Only filled in profiles will be displayed on the frontend as icons. If you are missing some networks you would like to configure, enable them on the plugin settings page: Authors &gt; Settings &gt; More tab &gt; Social Networks section.\", 'molongui-authorship' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php if ( !Plugin::has_pro() and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+        &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'MOLONGUI_AUTHORSHIP_WEB' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; @@ -0,0 +1,38 @@<br \/>+&lt;?php<br \/>+<br \/>+use Molongui\\Authorship\\Common\\Utils\\Plugin;<br \/>+<br \/>+defined( 'ABSPATH' ) or exit; \/\/ Exit if accessed directly<br \/>+<br \/>+?&gt;<br \/>+<br \/>+&lt;div class=\"molongui-metabox\"&gt;<br \/>+<br \/>+    &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php _e( \"Only filled in profiles will be displayed on the frontend as icons. If you are missing some networks you would like to configure, enable them on the plugin settings page: Authors &gt; Settings &gt; More tab &gt; Social Networks section.\", 'molongui-authorship' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php if ( !Plugin::has_pro() and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+        &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; +&lt;?php<br \/>+<br \/>+use Molongui\\Authorship\\Common\\Utils\\Plugin;<br \/>+<br \/>+defined( 'ABSPATH' ) or exit; \/\/ Exit if accessed directly<br \/>+<br \/>+?&gt;<br \/>+<br \/>+&lt;div class=\"molongui-metabox\"&gt;<br \/>+<br \/>+    &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php _e( \"Only filled in profiles will be displayed on the frontend as icons. If you are missing some networks you would like to configure, enable them on the plugin settings page: Authors &gt; Settings &gt; More tab &gt; Social Networks section.\", 'molongui-authorship' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php if ( !Plugin::has_pro() and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+        &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php endif; ?&gt;<br \/>+<br \/>+    &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>\ud83d\udeab Error( severity 5 ): Overriding WordPress globals is prohibited. Found assignment to $id (WordPress.WP.GlobalVariablesOverride.Prohibited).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; +<br \/>+?&gt;<br \/>+<br \/>+&lt;div class=\"molongui-metabox\"&gt;<br \/>+<br \/>+    &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php _e( \"Only filled in profiles will be displayed on the frontend as icons. If you are missing some networks you would like to configure, enable them on the plugin settings page: Authors &gt; Settings &gt; More tab &gt; Social Networks section.\", 'molongui-authorship' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php if ( !Plugin::has_pro() and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+        &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php endif; ?&gt;<br \/>+<br \/>+    &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+        &lt;?php $network&#091;'value'] = get_post_meta( $post-&gt;ID, '_molongui_guest_author_'.$id, true ); ?&gt;<br \/>+<br \/>+        &lt;div class=\"m-field &lt;?php echo ( ( !Plugin::has_pro() and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+            &lt;label class=\"m-title\" for=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\"&gt;&lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;&lt;\/label&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$id' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; +<br \/>+?&gt;<br \/>+<br \/>+&lt;div class=\"molongui-metabox\"&gt;<br \/>+<br \/>+    &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php _e( \"Only filled in profiles will be displayed on the frontend as icons. If you are missing some networks you would like to configure, enable them on the plugin settings page: Authors &gt; Settings &gt; More tab &gt; Social Networks section.\", 'molongui-authorship' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php if ( !Plugin::has_pro() and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+        &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php endif; ?&gt;<br \/>+<br \/>+    &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+        &lt;?php $network&#091;'value'] = get_post_meta( $post-&gt;ID, '_molongui_guest_author_'.$id, true ); ?&gt;<br \/>+<br \/>+        &lt;div class=\"m-field &lt;?php echo ( ( !Plugin::has_pro() and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+            &lt;label class=\"m-title\" for=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\"&gt;&lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;&lt;\/label&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$network&#091;'name']' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; +<br \/>+    &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php _e( \"Only filled in profiles will be displayed on the frontend as icons. If you are missing some networks you would like to configure, enable them on the plugin settings page: Authors &gt; Settings &gt; More tab &gt; Social Networks section.\", 'molongui-authorship' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php if ( !Plugin::has_pro() and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+        &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php endif; ?&gt;<br \/>+<br \/>+    &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+        &lt;?php $network&#091;'value'] = get_post_meta( $post-&gt;ID, '_molongui_guest_author_'.$id, true ); ?&gt;<br \/>+<br \/>+        &lt;div class=\"m-field &lt;?php echo ( ( !Plugin::has_pro() and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+            &lt;label class=\"m-title\" for=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\"&gt;&lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;&lt;\/label&gt;<br \/>+            &lt;?php if ( !Plugin::has_pro() and $network&#091;'premium'] ) : ?&gt;<br \/>+                &lt;div class=\"input-wrap\"&gt;<br \/>+                    &lt;div class=\"m-tooltip\"&gt;<br \/>+                        &lt;input type=\"text\" disabled placeholder=\"&lt;?php printf( __( \"%s Premium feature\", 'molongui-authorship' ), '&amp;#128970;' ); ?&gt;\" value=\"\" class=\"text\"&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; +    &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php _e( \"Only filled in profiles will be displayed on the frontend as icons. If you are missing some networks you would like to configure, enable them on the plugin settings page: Authors &gt; Settings &gt; More tab &gt; Social Networks section.\", 'molongui-authorship' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php if ( !Plugin::has_pro() and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+        &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php endif; ?&gt;<br \/>+<br \/>+    &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+        &lt;?php $network&#091;'value'] = get_post_meta( $post-&gt;ID, '_molongui_guest_author_'.$id, true ); ?&gt;<br \/>+<br \/>+        &lt;div class=\"m-field &lt;?php echo ( ( !Plugin::has_pro() and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+            &lt;label class=\"m-title\" for=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\"&gt;&lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;&lt;\/label&gt;<br \/>+            &lt;?php if ( !Plugin::has_pro() and $network&#091;'premium'] ) : ?&gt;<br \/>+                &lt;div class=\"input-wrap\"&gt;<br \/>+                    &lt;div class=\"m-tooltip\"&gt;<br \/>+                        &lt;input type=\"text\" disabled placeholder=\"&lt;?php printf( __( \"%s Premium feature\", 'molongui-authorship' ), '&amp;#128970;' ); ?&gt;\" value=\"\" class=\"text\"&gt;<br \/>+                        &lt;span class=\"m-tooltip__text m-tooltip__top\"&gt;&lt;?php printf( __( \"You need Molongui Authorship Pro to be able to add the %s profile\", 'molongui-authorship' ), $network&#091;'name'] ); ?&gt;&lt;\/span&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$network&#091;'name']' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; +    &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php _e( \"Only filled in profiles will be displayed on the frontend as icons. If you are missing some networks you would like to configure, enable them on the plugin settings page: Authors &gt; Settings &gt; More tab &gt; Social Networks section.\", 'molongui-authorship' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php if ( !Plugin::has_pro() and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+        &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+    &lt;?php endif; ?&gt;<br \/>+<br \/>+    &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+        &lt;?php $network&#091;'value'] = get_post_meta( $post-&gt;ID, '_molongui_guest_author_'.$id, true ); ?&gt;<br \/>+<br \/>+        &lt;div class=\"m-field &lt;?php echo ( ( !Plugin::has_pro() and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+            &lt;label class=\"m-title\" for=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\"&gt;&lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;&lt;\/label&gt;<br \/>+            &lt;?php if ( !Plugin::has_pro() and $network&#091;'premium'] ) : ?&gt;<br \/>+                &lt;div class=\"input-wrap\"&gt;<br \/>+                    &lt;div class=\"m-tooltip\"&gt;<br \/>+                        &lt;input type=\"text\" disabled placeholder=\"&lt;?php printf( __( \"%s Premium feature\", 'molongui-authorship' ), '&amp;#128970;' ); ?&gt;\" value=\"\" class=\"text\"&gt;<br \/>+                        &lt;span class=\"m-tooltip__text m-tooltip__top\"&gt;&lt;?php printf( __( \"You need Molongui Authorship Pro to be able to add the %s profile\", 'molongui-authorship' ), $network&#091;'name'] ); ?&gt;&lt;\/span&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; +    &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+        &lt;?php $network&#091;'value'] = get_post_meta( $post-&gt;ID, '_molongui_guest_author_'.$id, true ); ?&gt;<br \/>+<br \/>+        &lt;div class=\"m-field &lt;?php echo ( ( !Plugin::has_pro() and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+            &lt;label class=\"m-title\" for=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\"&gt;&lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;&lt;\/label&gt;<br \/>+            &lt;?php if ( !Plugin::has_pro() and $network&#091;'premium'] ) : ?&gt;<br \/>+                &lt;div class=\"input-wrap\"&gt;<br \/>+                    &lt;div class=\"m-tooltip\"&gt;<br \/>+                        &lt;input type=\"text\" disabled placeholder=\"&lt;?php printf( __( \"%s Premium feature\", 'molongui-authorship' ), '&amp;#128970;' ); ?&gt;\" value=\"\" class=\"text\"&gt;<br \/>+                        &lt;span class=\"m-tooltip__text m-tooltip__top\"&gt;&lt;?php printf( __( \"You need Molongui Authorship Pro to be able to add the %s profile\", 'molongui-authorship' ), $network&#091;'name'] ); ?&gt;&lt;\/span&gt;<br \/>+                    &lt;\/div&gt;<br \/>+                &lt;\/div&gt;<br \/>+            &lt;?php else : ?&gt;<br \/>+                &lt;div class=\"input-wrap\"&gt;<br \/>+                    &lt;input type=\"text\" placeholder=\"&lt;?php echo $network&#091;'url']; ?&gt;\" id=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\" name=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\" value=\"&lt;?php echo ( $network&#091;'value'] ? $network&#091;'value'] : '' ); ?&gt;\" class=\"text\"&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$id' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; +    &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+        &lt;?php $network&#091;'value'] = get_post_meta( $post-&gt;ID, '_molongui_guest_author_'.$id, true ); ?&gt;<br \/>+<br \/>+        &lt;div class=\"m-field &lt;?php echo ( ( !Plugin::has_pro() and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+            &lt;label class=\"m-title\" for=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\"&gt;&lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;&lt;\/label&gt;<br \/>+            &lt;?php if ( !Plugin::has_pro() and $network&#091;'premium'] ) : ?&gt;<br \/>+                &lt;div class=\"input-wrap\"&gt;<br \/>+                    &lt;div class=\"m-tooltip\"&gt;<br \/>+                        &lt;input type=\"text\" disabled placeholder=\"&lt;?php printf( __( \"%s Premium feature\", 'molongui-authorship' ), '&amp;#128970;' ); ?&gt;\" value=\"\" class=\"text\"&gt;<br \/>+                        &lt;span class=\"m-tooltip__text m-tooltip__top\"&gt;&lt;?php printf( __( \"You need Molongui Authorship Pro to be able to add the %s profile\", 'molongui-authorship' ), $network&#091;'name'] ); ?&gt;&lt;\/span&gt;<br \/>+                    &lt;\/div&gt;<br \/>+                &lt;\/div&gt;<br \/>+            &lt;?php else : ?&gt;<br \/>+                &lt;div class=\"input-wrap\"&gt;<br \/>+                    &lt;input type=\"text\" placeholder=\"&lt;?php echo $network&#091;'url']; ?&gt;\" id=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\" name=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\" value=\"&lt;?php echo ( $network&#091;'value'] ? $network&#091;'value'] : '' ); ?&gt;\" class=\"text\"&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$network&#091;'url']' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/guest-author\/html-admin-social-metabox.php:<br \/><br \/>&gt; +    &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+        &lt;?php $network&#091;'value'] = get_post_meta( $post-&gt;ID, '_molongui_guest_author_'.$id, true ); ?&gt;<br \/>+<br \/>+        &lt;div class=\"m-field &lt;?php echo ( ( !Plugin::has_pro() and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+            &lt;label class=\"m-title\" for=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\"&gt;&lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;&lt;\/label&gt;<br \/>+            &lt;?php if ( !Plugin::has_pro() and $network&#091;'premium'] ) : ?&gt;<br \/>+                &lt;div class=\"input-wrap\"&gt;<br \/>+                    &lt;div class=\"m-tooltip\"&gt;<br \/>+                        &lt;input type=\"text\" disabled placeholder=\"&lt;?php printf( __( \"%s Premium feature\", 'molongui-authorship' ), '&amp;#128970;' ); ?&gt;\" value=\"\" class=\"text\"&gt;<br \/>+                        &lt;span class=\"m-tooltip__text m-tooltip__top\"&gt;&lt;?php printf( __( \"You need Molongui Authorship Pro to be able to add the %s profile\", 'molongui-authorship' ), $network&#091;'name'] ); ?&gt;&lt;\/span&gt;<br \/>+                    &lt;\/div&gt;<br \/>+                &lt;\/div&gt;<br \/>+            &lt;?php else : ?&gt;<br \/>+                &lt;div class=\"input-wrap\"&gt;<br \/>+                    &lt;input type=\"text\" placeholder=\"&lt;?php echo $network&#091;'url']; ?&gt;\" id=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\" name=\"_molongui_guest_author_&lt;?php echo $id; ?&gt;\" value=\"&lt;?php echo ( $network&#091;'value'] ? $network&#091;'value'] : '' ); ?&gt;\" class=\"text\"&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$network&#091;'value']' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-avatar-field.php:<br \/><br \/>&gt; +<br \/>+if ( current_user_can( 'upload_files' ) ) :<br \/>+    wp_enqueue_media();<br \/>+    Admin_User::enqueue_avatar_scripts();<br \/>+    Assets::enqueue_media_uploader_styles();<br \/>+    ?&gt;<br \/>+<br \/>+    &lt;div id=\"molongui_author_image\"&gt;<br \/>+<br \/>+        &lt;!-- Outputs the image after save --&gt;<br \/>+        &lt;span class=\"current_img\"&gt;<br \/>+            &lt;?php if ( !empty( $img_url ) ) : ?&gt;<br \/>+                &lt;img class=\"molongui_current_img\" src=\"&lt;?php echo esc_url( $img_url ); ?&gt;\"&gt;<br \/>+                &lt;span class=\"edit_options uploaded\"&gt;<br \/>+                    &lt;a class=\"remove_img\"&gt;&lt;span&gt;&lt;?php _e( \"Remove\", 'molongui-authorship' ); ?&gt;&lt;\/span&gt;&lt;\/a&gt;<br \/>+                    &lt;a class=\"edit_img\" href=\"&lt;?php echo $img_edit_url; ?&gt;\" target=\"_blank\"&gt;&lt;span&gt;&lt;?php _e( \"Edit\", 'molongui-authorship' ); ?&gt;&lt;\/span&gt;&lt;\/a&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$img_edit_url' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-avatar-field.php:<br \/><br \/>&gt; +    Admin_User::enqueue_avatar_scripts();<br \/>+    Assets::enqueue_media_uploader_styles();<br \/>+    ?&gt;<br \/>+<br \/>+    &lt;div id=\"molongui_author_image\"&gt;<br \/>+<br \/>+        &lt;!-- Outputs the image after save --&gt;<br \/>+        &lt;span class=\"current_img\"&gt;<br \/>+            &lt;?php if ( !empty( $img_url ) ) : ?&gt;<br \/>+                &lt;img class=\"molongui_current_img\" src=\"&lt;?php echo esc_url( $img_url ); ?&gt;\"&gt;<br \/>+                &lt;span class=\"edit_options uploaded\"&gt;<br \/>+                    &lt;a class=\"remove_img\"&gt;&lt;span&gt;&lt;?php _e( \"Remove\", 'molongui-authorship' ); ?&gt;&lt;\/span&gt;&lt;\/a&gt;<br \/>+                    &lt;a class=\"edit_img\" href=\"&lt;?php echo $img_edit_url; ?&gt;\" target=\"_blank\"&gt;&lt;span&gt;&lt;?php _e( \"Edit\", 'molongui-authorship' ); ?&gt;&lt;\/span&gt;&lt;\/a&gt;<br \/>+                &lt;\/span&gt;<br \/>+            &lt;?php else : ?&gt;<br \/>+                &lt;?php echo $gravatar_img; ?&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$gravatar_img' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-avatar-field.php:<br \/><br \/>&gt; +        &lt;!-- Outputs the image after save --&gt;<br \/>+        &lt;span class=\"current_img\"&gt;<br \/>+            &lt;?php if ( !empty( $img_url ) ) : ?&gt;<br \/>+                &lt;img class=\"molongui_current_img\" src=\"&lt;?php echo esc_url( $img_url ); ?&gt;\"&gt;<br \/>+                &lt;span class=\"edit_options uploaded\"&gt;<br \/>+                    &lt;a class=\"remove_img\"&gt;&lt;span&gt;&lt;?php _e( \"Remove\", 'molongui-authorship' ); ?&gt;&lt;\/span&gt;&lt;\/a&gt;<br \/>+                    &lt;a class=\"edit_img\" href=\"&lt;?php echo $img_edit_url; ?&gt;\" target=\"_blank\"&gt;&lt;span&gt;&lt;?php _e( \"Edit\", 'molongui-authorship' ); ?&gt;&lt;\/span&gt;&lt;\/a&gt;<br \/>+                &lt;\/span&gt;<br \/>+            &lt;?php else : ?&gt;<br \/>+                &lt;?php echo $gravatar_img; ?&gt;<br \/>+            &lt;?php endif; ?&gt;<br \/>+        &lt;\/span&gt;<br \/>+<br \/>+        &lt;!-- Hold the value here of WPMU image --&gt;<br \/>+        &lt;div class=\"molongui_image_upload\"&gt;<br \/>+            &lt;input type=\"hidden\" class=\"hidden\" name=\"molongui_author_image_id\"   id=\"molongui_author_image_id\"   value=\"&lt;?php echo $img_id; ?&gt;\" \/&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$img_id' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-avatar-field.php:<br \/><br \/>&gt; +            &lt;?php if ( !empty( $img_url ) ) : ?&gt;<br \/>+                &lt;img class=\"molongui_current_img\" src=\"&lt;?php echo esc_url( $img_url ); ?&gt;\"&gt;<br \/>+                &lt;span class=\"edit_options uploaded\"&gt;<br \/>+                    &lt;a class=\"remove_img\"&gt;&lt;span&gt;&lt;?php _e( \"Remove\", 'molongui-authorship' ); ?&gt;&lt;\/span&gt;&lt;\/a&gt;<br \/>+                    &lt;a class=\"edit_img\" href=\"&lt;?php echo $img_edit_url; ?&gt;\" target=\"_blank\"&gt;&lt;span&gt;&lt;?php _e( \"Edit\", 'molongui-authorship' ); ?&gt;&lt;\/span&gt;&lt;\/a&gt;<br \/>+                &lt;\/span&gt;<br \/>+            &lt;?php else : ?&gt;<br \/>+                &lt;?php echo $gravatar_img; ?&gt;<br \/>+            &lt;?php endif; ?&gt;<br \/>+        &lt;\/span&gt;<br \/>+<br \/>+        &lt;!-- Hold the value here of WPMU image --&gt;<br \/>+        &lt;div class=\"molongui_image_upload\"&gt;<br \/>+            &lt;input type=\"hidden\" class=\"hidden\" name=\"molongui_author_image_id\"   id=\"molongui_author_image_id\"   value=\"&lt;?php echo $img_id; ?&gt;\" \/&gt;<br \/>+            &lt;input type=\"hidden\" class=\"hidden\" name=\"molongui_author_image_url\"  id=\"molongui_author_image_url\"  value=\"&lt;?php echo esc_url_raw( $img_url ); ?&gt;\" \/&gt;<br \/>+            &lt;input type=\"hidden\" class=\"hidden\" name=\"molongui_author_image_edit\" id=\"molongui_author_image_edit\" value=\"&lt;?php echo $img_edit_url; ?&gt;\" \/&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$img_edit_url' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-avatar-field.php:<br \/><br \/>&gt; +                &lt;img class=\"molongui_current_img\" src=\"&lt;?php echo esc_url( $img_url ); ?&gt;\"&gt;<br \/>+                &lt;span class=\"edit_options uploaded\"&gt;<br \/>+                    &lt;a class=\"remove_img\"&gt;&lt;span&gt;&lt;?php _e( \"Remove\", 'molongui-authorship' ); ?&gt;&lt;\/span&gt;&lt;\/a&gt;<br \/>+                    &lt;a class=\"edit_img\" href=\"&lt;?php echo $img_edit_url; ?&gt;\" target=\"_blank\"&gt;&lt;span&gt;&lt;?php _e( \"Edit\", 'molongui-authorship' ); ?&gt;&lt;\/span&gt;&lt;\/a&gt;<br \/>+                &lt;\/span&gt;<br \/>+            &lt;?php else : ?&gt;<br \/>+                &lt;?php echo $gravatar_img; ?&gt;<br \/>+            &lt;?php endif; ?&gt;<br \/>+        &lt;\/span&gt;<br \/>+<br \/>+        &lt;!-- Hold the value here of WPMU image --&gt;<br \/>+        &lt;div class=\"molongui_image_upload\"&gt;<br \/>+            &lt;input type=\"hidden\" class=\"hidden\" name=\"molongui_author_image_id\"   id=\"molongui_author_image_id\"   value=\"&lt;?php echo $img_id; ?&gt;\" \/&gt;<br \/>+            &lt;input type=\"hidden\" class=\"hidden\" name=\"molongui_author_image_url\"  id=\"molongui_author_image_url\"  value=\"&lt;?php echo esc_url_raw( $img_url ); ?&gt;\" \/&gt;<br \/>+            &lt;input type=\"hidden\" class=\"hidden\" name=\"molongui_author_image_edit\" id=\"molongui_author_image_edit\" value=\"&lt;?php echo $img_edit_url; ?&gt;\" \/&gt;<br \/>+            &lt;input type='button' class=\"molongui_wpmu_button button-primary\"      id=\"molongui_author_image_btn\"  value=\"&lt;?php echo ( $img_url ? __( \"Change Avatar\", 'molongui-authorship' ) : __( \"Upload Avatar\", 'molongui-authorship' ) ); ?&gt;\" \/&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-avatar-field.php:<br \/><br \/>&gt; +        &lt;div class=\"molongui_image_upload\"&gt;<br \/>+            &lt;input type=\"hidden\" class=\"hidden\" name=\"molongui_author_image_id\"   id=\"molongui_author_image_id\"   value=\"&lt;?php echo $img_id; ?&gt;\" \/&gt;<br \/>+            &lt;input type=\"hidden\" class=\"hidden\" name=\"molongui_author_image_url\"  id=\"molongui_author_image_url\"  value=\"&lt;?php echo esc_url_raw( $img_url ); ?&gt;\" \/&gt;<br \/>+            &lt;input type=\"hidden\" class=\"hidden\" name=\"molongui_author_image_edit\" id=\"molongui_author_image_edit\" value=\"&lt;?php echo $img_edit_url; ?&gt;\" \/&gt;<br \/>+            &lt;input type='button' class=\"molongui_wpmu_button button-primary\"      id=\"molongui_author_image_btn\"  value=\"&lt;?php echo ( $img_url ? __( \"Change Avatar\", 'molongui-authorship' ) : __( \"Upload Avatar\", 'molongui-authorship' ) ); ?&gt;\" \/&gt;<br \/>+            &lt;br \/&gt;<br \/>+        &lt;\/div&gt;<br \/>+<br \/>+    &lt;\/div&gt;<br \/>+<br \/>+&lt;?php else : ?&gt;<br \/>+<br \/>+    &lt;?php if ( $img_url ): ?&gt;<br \/>+        &lt;img src=\"&lt;?php echo esc_url( $img_url ); ?&gt;\" class=\"molongui_current_img\"&gt;<br \/>+    &lt;?php else : ?&gt;<br \/>+        &lt;?php echo $gravatar_img; ?&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$gravatar_img' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-gravatar-field.php:<br \/><br \/>&gt; +$profileuser = get_user_to_edit( $user_id );<br \/>+<br \/>+?&gt;<br \/>+<br \/>+&lt;?php echo get_avatar( $user_id, '150' ); ?&gt;<br \/>+&lt;p class=\"description\"&gt;<br \/>+    &lt;?php<br \/>+    if ( IS_PROFILE_PAGE ) {<br \/>+        $description = sprintf(<br \/>+            __( '&lt;a href=\"%s\"&gt;You can change your profile picture on Gravatar&lt;\/a&gt;.' ),<br \/>+            __( 'https:\/\/en.gravatar.com\/' )<br \/>+        );<br \/>+    } else {<br \/>+        $description = '';<br \/>+    }<br \/>+    echo apply_filters( 'user_profile_picture_description', $description, $profileuser );<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'apply_filters' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +    if ( !is_string( $bio_template ) || !is_readable( $bio_template ) )<br \/>+    {<br \/>+        $bio_template = $default_bio_template;<br \/>+    }<br \/>+<br \/>+    include $bio_template;<br \/>+    ?&gt;<br \/>+<br \/>+    &lt;!-- Profile Picture --&gt;<br \/>+    &lt;?php include 'html-admin-profile-picture.php'; ?&gt;<br \/>+<br \/>+    &lt;!-- Professional info --&gt;<br \/>+    &lt;div id=\"molongui-pro-info\"&gt;<br \/>+<br \/>+        &lt;h3&gt;&lt;?php _e( \"Professional Info\", 'molongui-authorship' ); ?&gt;&lt;\/h3&gt;<br \/>+        &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php printf( __( \"Information below will be displayed on the author box and other relevant sections (i.e. authors list) below the user's name. %sPhone number won't be displayed unless configured%s using the %sdisplay settings%s. Any blank field will not be displayed either.\", 'molongui-authorship' ), '&lt;strong&gt;', '&lt;\/strong&gt;', '&lt;a href=\"#molongui-box-settings\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +                &lt;tr class=\"user-m-company-link-wrap\"&gt;<br \/>+                    &lt;th&gt;&lt;label for=\"molongui_author_company_link\"&gt;&lt;?php _e( \"Company website\", 'molongui-authorship' ); ?&gt;&lt;\/label&gt;&lt;\/th&gt;<br \/>+                    &lt;td&gt;&lt;input type=\"text\" name=\"molongui_author_company_link\" id=\"molongui_author_company_link\" value=\"&lt;?php echo esc_attr( get_the_author_meta( 'molongui_author_company_link', $user-&gt;ID ) ); ?&gt;\" class=\"regular-text\" placeholder=\"&lt;?php _e( \"https:\/\/www.example.com\/\", 'molongui-authorship' ); ?&gt;\" \/&gt;&lt;\/td&gt;<br \/>+                &lt;\/tr&gt;<br \/>+<br \/>+            &lt;\/tbody&gt;<br \/>+        &lt;\/table&gt;<br \/>+<br \/>+    &lt;\/div&gt;<br \/>+<br \/>+    &lt;?php if ( !empty( $networks ) ) : ?&gt;<br \/>+<br \/>+        &lt;!-- Social Profiles --&gt;<br \/>+        &lt;div id=\"molongui-social-profiles\"&gt;<br \/>+            &lt;h3&gt;&lt;?php _e( \"Social Profiles\", 'molongui-authorship' ); ?&gt;&lt;\/h3&gt;<br \/>+            &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php printf( __( \"The Molongui Authorship plugin allows you to add %smore than %s different social profiles%s, so if you don't see here the ones you want to add, just go to the %splugin settings page%s and enable those you need to edit. %sSocial profiles will be displayed as icons on the author box and other relevant sections. Any blank profile will not be displayed.\", 'molongui-authorship' ), '&lt;strong&gt;', '110', '&lt;\/strong&gt;', '&lt;a href=\"'.Settings::url( 'integrations' ).'\" target=\"_blank\"&gt;', '&lt;\/a&gt;', '&lt;br&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'Settings' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +                &lt;tr class=\"user-m-company-link-wrap\"&gt;<br \/>+                    &lt;th&gt;&lt;label for=\"molongui_author_company_link\"&gt;&lt;?php _e( \"Company website\", 'molongui-authorship' ); ?&gt;&lt;\/label&gt;&lt;\/th&gt;<br \/>+                    &lt;td&gt;&lt;input type=\"text\" name=\"molongui_author_company_link\" id=\"molongui_author_company_link\" value=\"&lt;?php echo esc_attr( get_the_author_meta( 'molongui_author_company_link', $user-&gt;ID ) ); ?&gt;\" class=\"regular-text\" placeholder=\"&lt;?php _e( \"https:\/\/www.example.com\/\", 'molongui-authorship' ); ?&gt;\" \/&gt;&lt;\/td&gt;<br \/>+                &lt;\/tr&gt;<br \/>+<br \/>+            &lt;\/tbody&gt;<br \/>+        &lt;\/table&gt;<br \/>+<br \/>+    &lt;\/div&gt;<br \/>+<br \/>+    &lt;?php if ( !empty( $networks ) ) : ?&gt;<br \/>+<br \/>+        &lt;!-- Social Profiles --&gt;<br \/>+        &lt;div id=\"molongui-social-profiles\"&gt;<br \/>+            &lt;h3&gt;&lt;?php _e( \"Social Profiles\", 'molongui-authorship' ); ?&gt;&lt;\/h3&gt;<br \/>+            &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php printf( __( \"The Molongui Authorship plugin allows you to add %smore than %s different social profiles%s, so if you don't see here the ones you want to add, just go to the %splugin settings page%s and enable those you need to edit. %sSocial profiles will be displayed as icons on the author box and other relevant sections. Any blank profile will not be displayed.\", 'molongui-authorship' ), '&lt;strong&gt;', '110', '&lt;\/strong&gt;', '&lt;a href=\"'.Settings::url( 'integrations' ).'\" target=\"_blank\"&gt;', '&lt;\/a&gt;', '&lt;br&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +            &lt;?php if ( !empty( $contact_social_values ) ) : ?&gt;<br \/>+<br \/>+                &lt;ul class=\"m-tip\"&gt;<br \/>+                    &lt;li&gt;<br \/>+                        &lt;?php<br \/>+                        _e(<br \/>+                            \"Compatible social profiles from the Contact Info section are used automatically when the corresponding Molongui field is empty. A value entered below always takes precedence.\",<br \/>+                            'molongui-authorship'<br \/>+                        );<br \/>+                        ?&gt;<br \/>+                    &lt;\/li&gt;<br \/>+                &lt;\/ul&gt;<br \/>+<br \/>+            &lt;?php endif; ?&gt;<br \/>+            &lt;?php if ( !$is_pro and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+                &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'MOLONGUI_AUTHORSHIP_WEB' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +            &lt;?php if ( !empty( $contact_social_values ) ) : ?&gt;<br \/>+<br \/>+                &lt;ul class=\"m-tip\"&gt;<br \/>+                    &lt;li&gt;<br \/>+                        &lt;?php<br \/>+                        _e(<br \/>+                            \"Compatible social profiles from the Contact Info section are used automatically when the corresponding Molongui field is empty. A value entered below always takes precedence.\",<br \/>+                            'molongui-authorship'<br \/>+                        );<br \/>+                        ?&gt;<br \/>+                    &lt;\/li&gt;<br \/>+                &lt;\/ul&gt;<br \/>+<br \/>+            &lt;?php endif; ?&gt;<br \/>+            &lt;?php if ( !$is_pro and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+                &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +                        _e(<br \/>+                            \"Compatible social profiles from the Contact Info section are used automatically when the corresponding Molongui field is empty. A value entered below always takes precedence.\",<br \/>+                            'molongui-authorship'<br \/>+                        );<br \/>+                        ?&gt;<br \/>+                    &lt;\/li&gt;<br \/>+                &lt;\/ul&gt;<br \/>+<br \/>+            &lt;?php endif; ?&gt;<br \/>+            &lt;?php if ( !$is_pro and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+                &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+            &lt;?php endif; ?&gt;<br \/>+<br \/>+            &lt;div id=\"m-social\"&gt;<br \/>+<br \/>+                &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>\ud83d\udeab Error( severity 5 ): Overriding WordPress globals is prohibited. Found assignment to $id (WordPress.WP.GlobalVariablesOverride.Prohibited).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +                        );<br \/>+                        ?&gt;<br \/>+                    &lt;\/li&gt;<br \/>+                &lt;\/ul&gt;<br \/>+<br \/>+            &lt;?php endif; ?&gt;<br \/>+            &lt;?php if ( !$is_pro and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+                &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+            &lt;?php endif; ?&gt;<br \/>+<br \/>+            &lt;div id=\"m-social\"&gt;<br \/>+<br \/>+                &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+                    &lt;div class=\"m-field &lt;?php echo ( ( !$is_pro and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+                        &lt;label class=\"m-title\" for=\"molongui_author_&lt;?php echo $id; ?&gt;\"&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$id' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +                        ?&gt;<br \/>+                    &lt;\/li&gt;<br \/>+                &lt;\/ul&gt;<br \/>+<br \/>+            &lt;?php endif; ?&gt;<br \/>+            &lt;?php if ( !$is_pro and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+                &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+            &lt;?php endif; ?&gt;<br \/>+<br \/>+            &lt;div id=\"m-social\"&gt;<br \/>+<br \/>+                &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+                    &lt;div class=\"m-field &lt;?php echo ( ( !$is_pro and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+                        &lt;label class=\"m-title\" for=\"molongui_author_&lt;?php echo $id; ?&gt;\"&gt;<br \/>+                            &lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$id' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +                        ?&gt;<br \/>+                    &lt;\/li&gt;<br \/>+                &lt;\/ul&gt;<br \/>+<br \/>+            &lt;?php endif; ?&gt;<br \/>+            &lt;?php if ( !$is_pro and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+                &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+            &lt;?php endif; ?&gt;<br \/>+<br \/>+            &lt;div id=\"m-social\"&gt;<br \/>+<br \/>+                &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+                    &lt;div class=\"m-field &lt;?php echo ( ( !$is_pro and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+                        &lt;label class=\"m-title\" for=\"molongui_author_&lt;?php echo $id; ?&gt;\"&gt;<br \/>+                            &lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$network&#091;'name']' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +            &lt;?php if ( !$is_pro and false !== array_search(true, array_column( $networks, 'premium' ) ) ) : ?&gt;<br \/>+                &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+            &lt;?php endif; ?&gt;<br \/>+<br \/>+            &lt;div id=\"m-social\"&gt;<br \/>+<br \/>+                &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+                    &lt;div class=\"m-field &lt;?php echo ( ( !$is_pro and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+                        &lt;label class=\"m-title\" for=\"molongui_author_&lt;?php echo $id; ?&gt;\"&gt;<br \/>+                            &lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;<br \/>+                        &lt;\/label&gt;<br \/>+                        &lt;?php if ( !$is_pro and $network&#091;'premium'] ) : ?&gt;<br \/>+                            &lt;div class=\"input-wrap\"&gt;<br \/>+                                &lt;div class=\"m-tooltip\"&gt;<br \/>+                                    &lt;input type=\"text\" disabled placeholder=\"&lt;?php printf( __( \"%s Premium feature\", 'molongui-authorship' ), '&amp;#128970;' ); ?&gt;\" value=\"\" class=\"text\"&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +                &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+            &lt;?php endif; ?&gt;<br \/>+<br \/>+            &lt;div id=\"m-social\"&gt;<br \/>+<br \/>+                &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+                    &lt;div class=\"m-field &lt;?php echo ( ( !$is_pro and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+                        &lt;label class=\"m-title\" for=\"molongui_author_&lt;?php echo $id; ?&gt;\"&gt;<br \/>+                            &lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;<br \/>+                        &lt;\/label&gt;<br \/>+                        &lt;?php if ( !$is_pro and $network&#091;'premium'] ) : ?&gt;<br \/>+                            &lt;div class=\"input-wrap\"&gt;<br \/>+                                &lt;div class=\"m-tooltip\"&gt;<br \/>+                                    &lt;input type=\"text\" disabled placeholder=\"&lt;?php printf( __( \"%s Premium feature\", 'molongui-authorship' ), '&amp;#128970;' ); ?&gt;\" value=\"\" class=\"text\"&gt;<br \/>+                                    &lt;span class=\"m-tooltip__text m-tooltip__top\"&gt;&lt;?php printf( __( \"You need Molongui Authorship Pro to be able to add the %s profile\", 'molongui-authorship' ), $network&#091;'name'] ); ?&gt;&lt;\/span&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$network&#091;'name']' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +                &lt;ul class=\"m-tip m-premium\"&gt;&lt;li&gt;&lt;?php printf( __( \"Disabled options are only available in the %sPro version%s of the plugin.\", 'molongui-authorship' ), '&lt;a href=\"'.MOLONGUI_AUTHORSHIP_WEB.'\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>+            &lt;?php endif; ?&gt;<br \/>+<br \/>+            &lt;div id=\"m-social\"&gt;<br \/>+<br \/>+                &lt;?php foreach ( $networks as $id =&gt; $network ) : ?&gt;<br \/>+<br \/>+                    &lt;div class=\"m-field &lt;?php echo ( ( !$is_pro and $network&#091;'premium'] ) ? 'm-premium' : '' ) ?&gt;\"&gt;<br \/>+                        &lt;label class=\"m-title\" for=\"molongui_author_&lt;?php echo $id; ?&gt;\"&gt;<br \/>+                            &lt;i class=\"m-a-icon-&lt;?php echo $id; ?&gt;\"&gt;&lt;\/i&gt;&lt;?php echo $network&#091;'name']; ?&gt;<br \/>+                        &lt;\/label&gt;<br \/>+                        &lt;?php if ( !$is_pro and $network&#091;'premium'] ) : ?&gt;<br \/>+                            &lt;div class=\"input-wrap\"&gt;<br \/>+                                &lt;div class=\"m-tooltip\"&gt;<br \/>+                                    &lt;input type=\"text\" disabled placeholder=\"&lt;?php printf( __( \"%s Premium feature\", 'molongui-authorship' ), '&amp;#128970;' ); ?&gt;\" value=\"\" class=\"text\"&gt;<br \/>+                                    &lt;span class=\"m-tooltip__text m-tooltip__top\"&gt;&lt;?php printf( __( \"You need Molongui Authorship Pro to be able to add the %s profile\", 'molongui-authorship' ), $network&#091;'name'] ); ?&gt;&lt;\/span&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +<br \/>+                &lt;?php endforeach; ?&gt;<br \/>+<br \/>+            &lt;\/div&gt;<br \/>+<br \/>+        &lt;\/div&gt;<br \/>+<br \/>+    &lt;?php endif; ?&gt;<br \/>+<br \/>+    &lt;?php if ( Settings::is_enabled( 'author-box' ) ) : ?&gt;<br \/>+<br \/>+        &lt;!-- Author Box Settings --&gt;<br \/>+        &lt;div id=\"molongui-box-settings\"&gt;<br \/>+<br \/>+            &lt;h3&gt;&lt;?php _e( \"Author Box Settings\", 'molongui-authorship' ); ?&gt;&lt;\/h3&gt;<br \/>+            &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php printf( __( \"On the %splugin settings page%s you can configure all the display settings that affects how the author box is displayed by default. Nonetheless, below you have some settings that override that global configuration for this user.\", 'molongui-authorship' ), '&lt;a href=\"'.Settings::url( 'reading' ).'\" target=\"_blank\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'Settings' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><br \/>In plugins\/molongui-authorship\/views\/user\/html-admin-plugin-fields.php:<br \/><br \/>&gt; +<br \/>+                &lt;?php endforeach; ?&gt;<br \/>+<br \/>+            &lt;\/div&gt;<br \/>+<br \/>+        &lt;\/div&gt;<br \/>+<br \/>+    &lt;?php endif; ?&gt;<br \/>+<br \/>+    &lt;?php if ( Settings::is_enabled( 'author-box' ) ) : ?&gt;<br \/>+<br \/>+        &lt;!-- Author Box Settings --&gt;<br \/>+        &lt;div id=\"molongui-box-settings\"&gt;<br \/>+<br \/>+            &lt;h3&gt;&lt;?php _e( \"Author Box Settings\", 'molongui-authorship' ); ?&gt;&lt;\/h3&gt;<br \/>+            &lt;ul class=\"m-tip\"&gt;&lt;li&gt;&lt;?php printf( __( \"On the %splugin settings page%s you can configure all the display settings that affects how the author box is displayed by default. Nonetheless, below you have some settings that override that global configuration for this user.\", 'molongui-authorship' ), '&lt;a href=\"'.Settings::url( 'reading' ).'\" target=\"_blank\"&gt;', '&lt;\/a&gt;' ); ?&gt;&lt;\/li&gt;&lt;\/ul&gt;<br \/>\ud83d\udeab Error( severity 5 ): All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__' (WordPress.Security.EscapeOutput.OutputNotEscaped).<br \/><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><br \/><\/p>\n","protected":false},"template":"","class_list":["post-19008654","topic","type-topic","status-publish","hentry","topic-tag-errors"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/topic\/19008654","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/topic"}],"about":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/topic\/19008654\/revisions"}],"wp:attachment":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/media?parent=19008654"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}