[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$f51mpeYl7ue80UuJxDQapxWTjAe9owkAufv0-qBj3pcg":3,"$f976JAFr8by8ap0RqDAu6ClqL-dv2J2sr6wlRxDBXyHg":201,"$ffwDioKahmQb_vmudX2pQE_UAJMAZtnRpFD52cxO9-tk":205},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":13,"last_updated":14,"tested_up_to":15,"requires_at_least":16,"requires_php":17,"tags":18,"homepage":21,"download_link":22,"security_score":23,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":25,"discovery_status":26,"vulnerabilities":27,"developer":28,"crawl_stats":24,"alternatives":37,"analysis":144,"fingerprints":186},"css-flags","CSS Flags library","0.3.0","Per Søderlind","https:\u002F\u002Fprofiles.wordpress.org\u002Fpers\u002F","\u003Cp>The CSS Flags plugin \u002F library for WordPress loads a dynamicaly created CSS with responsive flags.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Note:\u003C\u002Fstrong> CSS Flags is not a standalone plugin\u002Flibrary, To display the flags you will have to \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fsoderlind\u002Fcss-flags\u002F#example-1\" rel=\"nofollow ugc\">add code to your theme\u003C\u002Fa> using your own plugin or theme functions.php\u003C\u002Fp>\n\u003Cp>You can \u003Ca href=\"https:\u002F\u002Fsoderlind.no\u002Fcss-flags-plugin-for-wordpress\u002F\" rel=\"nofollow ugc\">view the flags at my site\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Sample CSS:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>.css-flag.sami {\n    background-image: url('data:image\u002Fsvg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHZlcnNpb249IjEuMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAyMCIgaGVpZ2h0PSIxNTAwIj48cmVjdCB3aWR0aD0iNjQ1IiBoZWlnaHQ9IjE1MDAiIGZpbGw9IiNkODFlMDUiLz48cmVjdCB4PSI2NDUiIHdpZHRoPSIxNDAiIGhlaWdodD0iMTUwMCIgZmlsbD0iIzAwN2EzZCIvPjxyZWN0IHg9Ijc4NSIgd2lkdGg9IjE0MCIgaGVpZ2h0PSIxNTAwIiBmaWxsPSIjZmNkMTE2Ii8+PHJlY3QgeD0iOTI1IiB3aWR0aD0iMTA5NSIgaGVpZ2h0PSIxNTAwIiBmaWxsPSIjMDAzOGE4Ii8+PHBhdGggZD0iTSA3ODUsMzEwIGEgNDQwIDQ0MCAwIDAgMCAwLDg4MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAzOGE4IiBzdHJva2Utd2lkdGg9IjgwIi8+PHBhdGggZD0iTSA3ODUsMzEwIGEgNDQwIDQ0MCAwIDAgMSAwLDg4MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZDgxZTA1IiBzdHJva2Utd2lkdGg9IjgwIi8+PC9zdmc+');\n    height: 100%;\n    width: 134.666666667%;\n    background-size: 100% 100%;\n}\n.css-flag.sami-landscape {\n    height: 100%;\n    width: 134.666666667%;\n}\n.css-flag.sami-portrait {\n    height: 74.2574257426%;\n    width: 100%;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Usage\u003C\u002Fh4>\n\u003Cp>The total CSS file size is 4 MB, and you don’t want to send all that data back to the users, so you \u003Cstrong>must\u003C\u002Fstrong> use one of the following filters in your plugin or theme.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>css_flags_countries\u003C\u002Fstrong>: Load flags for one or more countries\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter('css_flags_countries', function() {\n    return array('no'); \u002F\u002F Array with ISO_3166-1_alpha-2 country codes: http:\u002F\u002Fen.wikipedia.org\u002Fwiki\u002FISO_3166-1_alpha-2#Officially_assigned_code_elements\n});\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>css_flags_regions\u003C\u002Fstrong>: Load the flags for one or more regions. You can choose between europe, oceania, africa, asia, northamerica, southamerica and middleeast.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter('css_flags_regions', function() {\n    return array('europe'); \u002F\u002Feurope, oceania, africa, asia, northamerica, southamerica, middleeast\n});\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>css_flags_exclude\u003C\u002Fstrong>: Exclude some countries from the list. This filter must be used in combination with the \u003Ccode>css_flags_countries\u003C\u002Fcode> or \u003Ccode>css_flags_regions\u003C\u002Fcode> filters\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter('css_flags_exclude', function() {\n    return array('eu');\n});\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>css_flags_cachetime\u003C\u002Fstrong>: Change the cache time, default it’s 7200 (60x60x2 = 2 hours)\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter('css_flags_cachetime', function() {\n    return 172800; \u002F\u002F 2 days\n});\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>If you must (but you shouldn’t), you can load all the  CSS flags using the following:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter('css_flags_countries', function() {\n    return array('all'); \u002F\u002F load all country flags (don't it's 4MB)\n});\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>More information at \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fsoderlind\u002Fcss-flags\u002F\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>Credits\u003C\u002Fh4>\n\u003Cp>The original CSS file is from http:\u002F\u002Fwww.phoca.cz\u002Fcssflags\u002F. If you only need the CSS file, grab it there.\u003C\u002Fp>\n","More than 250 vector based flags for WordPress",10,1898,0,"2016-12-18T12:39:00.000Z","4.7.32","4.0","",[19,20],"header","link","https:\u002F\u002Fgithub.com\u002Fsoderlind\u002Fcss-flags","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcss-flags.0.3.0.zip",85,null,"2026-03-15T15:16:48.613Z","no_bundle",[],{"slug":29,"display_name":30,"profile_url":8,"plugin_count":31,"total_installs":32,"avg_security_score":33,"avg_patch_time_days":34,"trust_score":35,"computed_at":36},"pers","PersianScript",102,176650,90,304,72,"2026-05-20T08:00:28.172Z",[38,54,80,100,120],{"slug":39,"name":40,"version":41,"author":7,"author_profile":8,"description":42,"short_description":43,"active_installs":44,"downloaded":45,"rating":46,"num_ratings":47,"last_updated":48,"tested_up_to":49,"requires_at_least":16,"requires_php":17,"tags":50,"homepage":51,"download_link":52,"security_score":23,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":53},"wp-anchor-header","WP Anchor Header","0.2.3","\u003Cp>WP Anchor Header generates anchored headings (H1-H6), creating a heading like this:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003Ch2 id=\"the-heading\">\n   The Heading\u003Ca class=\"anchorlink dashicons-before\" href=\"#the-heading\">\u003C\u002Fa>\n\u003C\u002Fh2>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>The links are styled using the following CSS:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F* show IDs for anchors *\u002F\nh1[id]:hover a.anchorlink:before,\nh2[id]:hover a.anchorlink:before,\nh3[id]:hover a.anchorlink:before,\nh4[id]:hover a.anchorlink:before,\nh5[id]:hover a.anchorlink:before,\nh6[id]:hover a.anchorlink:before {\n    content: \"\\f103\"; \u002F*dashicons-admin-links*\u002F\n    color: #888;\n    font-size: smaller;\n    text-decoration: none;\n    vertical-align: baseline;\n}\na.anchorlink {\n    text-decoration: none;\n    margin-left: 0.5em;\n    font-size: smaller;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch3>Credits\u003C\u002Fh3>\n\u003Cp>The plugin is inspired by Christian Weiske and his article \u003Ca href=\"http:\u002F\u002Fcweiske.de\u002Ftagebuch\u002Fhtml-heading-links.htm\" rel=\"nofollow ugc\">Usability: Clickable heading links\u003C\u002Fa>.\u003C\u002Fp>\n","WP Anchor Header generates anchored headings.",400,9910,86,6,"2018-03-09T01:03:00.000Z","4.9.29",[19,20],"https:\u002F\u002Fgithub.com\u002Fsoderlind\u002Fwp-anchor-header","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-anchor-header.0.2.3.zip","2026-04-16T10:56:18.058Z",{"slug":55,"name":56,"version":57,"author":58,"author_profile":59,"description":60,"short_description":61,"active_installs":62,"downloaded":63,"rating":64,"num_ratings":65,"last_updated":66,"tested_up_to":67,"requires_at_least":68,"requires_php":17,"tags":69,"homepage":75,"download_link":76,"security_score":77,"vuln_count":78,"unpatched_count":78,"last_vuln_date":79,"fetched_at":53},"custom-top-bar","Custom top bar","2.1","Suman Biswas","https:\u002F\u002Fprofiles.wordpress.org\u002Fsumanbiswas013\u002F","\u003Cp>You can easily customize page top bar with background color,contact number social links and a custom button\u003C\u002Fp>\n\u003Cp>By this plugin you can add \u002F modify your social links with image.\u003Cbr \u002F>\nThis social links will be display in top bar section.\u003C\u002Fp>\n\u003Cp>You can easily enable \u002F disable the top bar from back end.\u003Cbr \u002F>\nYou can customize the background color.\u003Cbr \u002F>\nYou can show \u002F hide contact number.\u003Cbr \u002F>\nYou can show \u002F hide email address.\u003Cbr \u002F>\nYou can show \u002F hide contact number.\u003Cbr \u002F>\nYou can show \u002F hide default admin bar.\u003C\u002Fp>\n\u003Ch3>A brief Markdown Example\u003C\u002Fh3>\n","You can easily customize page top bar with background color,contact number social links and a custom buttom",50,8176,60,2,"2026-01-30T16:18:00.000Z","6.9.4","3.0.1",[70,71,72,73,74],"colorfull-topbar","customize-header-bar","hide-admin-bar","social-links","top-bar","http:\u002F\u002Fdevelopersuman.orgfree.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcustom-top-bar.2.1.zip",79,1,"2025-03-11 00:00:00",{"slug":81,"name":82,"version":83,"author":84,"author_profile":85,"description":86,"short_description":87,"active_installs":62,"downloaded":88,"rating":89,"num_ratings":78,"last_updated":90,"tested_up_to":49,"requires_at_least":91,"requires_php":17,"tags":92,"homepage":98,"download_link":99,"security_score":23,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":53},"small-wp-security","Small WP Security – SP SWS","1.2","Alex Kuimov","https:\u002F\u002Fprofiles.wordpress.org\u002Fspoot1986\u002F","\u003Cp>Small WP Security is a WordPress plugin which provides the basic security of your site.\u003C\u002Fp>\n\u003Cp>Features:\u003C\u002Fp>\n\u003Cp>Meta tags and Link:\u003Cbr \u002F>\n– Remove RSD Link (EditURI Link),\u003Cbr \u002F>\n– Remove WLW Manifest Link,\u003Cbr \u002F>\n– Remove Shortlink,\u003Cbr \u002F>\n– Remove Prev\u002FNext Links,\u003Cbr \u002F>\n– Remove Canonical Link,\u003Cbr \u002F>\n– Remove DNS Prefetch Link,\u003Cbr \u002F>\n– Remove WP API Links and Scripts.\u003C\u002Fp>\n\u003Cp>Hide WP Version:\u003Cbr \u002F>\n– Remove WordPress generator version,\u003Cbr \u002F>\n– Remove WordPress version parameter from JS and CSS files.\u003C\u002Fp>\n\u003Cp>Remove RSS:\u003Cbr \u002F>\n– Clean up site head from the feed links and redirect them to the home page.\u003C\u002Fp>\n\u003Cp>Security Headers:\u003Cbr \u002F>\n– Remove Shortlink from HTTP Headers,\u003Cbr \u002F>\n– Remove X-Pingback from HTTP Headers,\u003Cbr \u002F>\n– Remove X-Powered-By from HTTP Headers,\u003Cbr \u002F>\n– Add X-Frame-Options,\u003Cbr \u002F>\n– Add X-XSS-Protection,\u003Cbr \u002F>\n– Add X-Content-Type-Options.\u003C\u002Fp>\n\u003Cp>Remove Emoji:\u003Cbr \u002F>\n– Remove Emoji Styles and Scripts.\u003C\u002Fp>\n\u003Cp>Comments links:\u003Cbr \u002F>\n– Remove Author′s Link,\u003Cbr \u002F>\n– Disable Auto Link.\u003C\u002Fp>\n","Small WP Security is a WordPress plugin which provides the basic security of your site.",1851,100,"2018-08-21T06:36:00.000Z","4.5.3",[93,94,95,96,97],"hide-wp-version","remove-emoji","remove-rsd-link","remove-rss","security-headers","https:\u002F\u002Fcms3.ru\u002Fsp-wp-security\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsmall-wp-security.zip",{"slug":101,"name":102,"version":103,"author":104,"author_profile":105,"description":106,"short_description":107,"active_installs":108,"downloaded":109,"rating":89,"num_ratings":110,"last_updated":111,"tested_up_to":112,"requires_at_least":113,"requires_php":17,"tags":114,"homepage":118,"download_link":119,"security_score":23,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":53},"add-ids-to-header-tags","Add IDs to Header Tags","1.0","George Stephanis","https:\u002F\u002Fprofiles.wordpress.org\u002Fgeorgestephanis\u002F","\u003Cp>A rather simple plugin, but tremendously useful for folks that like to write longer blog posts to be shared.  This will add an ID to each header tag in your content, but only if it doesn’t already have an ID.  This will let your users deep-link to specific sections within your content.\u003C\u002Fp>\n\u003Cp>It will also append a link with the content of \u003Ccode>#\u003C\u002Fcode> to each header that it adds an ID to.  The link has a class of \u003Ccode>deep-link\u003C\u002Fcode> though, so it’s easy to hide if you prefer.  A future release may add an option in to Settings > Reading to hide this link.\u003C\u002Fp>\n","Useful for folks that write long-form content containing subheaders, this will add an ID tag to any header tag in your content for deep linking.",20,3832,3,"2013-12-03T03:21:00.000Z","3.7.41","3",[115,116,117],"deep-linking","header-tags","long-form-content","http:\u002F\u002Fwordpress.org\u002Fplugins\u002Fadd-ids-to-header-tags\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fadd-ids-to-header-tags.1.0.zip",{"slug":121,"name":122,"version":123,"author":124,"author_profile":125,"description":126,"short_description":127,"active_installs":128,"downloaded":129,"rating":130,"num_ratings":131,"last_updated":132,"tested_up_to":67,"requires_at_least":133,"requires_php":134,"tags":135,"homepage":140,"download_link":141,"security_score":142,"vuln_count":110,"unpatched_count":13,"last_vuln_date":143,"fetched_at":53},"insert-headers-and-footers","WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager","2.3.5","Syed Balkhi","https:\u002F\u002Fprofiles.wordpress.org\u002Fsmub\u002F","\u003Ch4>Insert Headers & Footers + Full WordPress Code Snippets Plugin\u003C\u002Fh4>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwpcode.com\u002F?utm_source=wprepo&utm_medium=link&utm_campaign=liteplugin\" rel=\"nofollow ugc\">WPCode\u003C\u002Fa> (formerly known as Insert Headers and Footers by WPBeginner) is the most popular code snippets plugin for WordPress used by over 2 million websites.\u003C\u002Fp>\n\u003Cp>We make it easy for you to add code snippets in WordPress without having to edit your theme’s functions.php file.\u003C\u002Fp>\n\u003Cp>Our simple insert headers and footers interface allows you to insert code like Google Analytics, custom CSS, Facebook Pixel, and more to your WordPress site’s header and footer as well other areas of your website. No need to edit your theme files!\u003C\u002Fp>\n\u003Cp>Aside from Header and Footer scripts, you can also use WPCode to insert custom PHP code snippets, JavaScript code snippets, CSS code snippets, HTML code snippets, and text snippets with full conditional logic support.\u003C\u002Fp>\n\u003Cp>We took the pain out of adding custom code snippets in WordPress and made it easy.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>I have been using Insert Headers and Footers and it is such a useful tool. Super helpful and the very best of its kind. Highly recommend\u003Cbr \u002F>\n  The_Gibble – WordPress user\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Ch4>Quick Overview of WPCode from WPBeginner\u003C\u002Fh4>\n\u003Cp>\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FFo-7MKRRUec?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>\u003Cstrong>Introducing New WPCode Pro\u003C\u002Fstrong>\u003Cbr \u002F>\n  While WPCode Lite offers tons of powerful features for free, we listened to user feedback and created WPCode Pro with even more amazing features to improve your workflow. This includes smart conditional logic, saving code snippets to cloud library, code revisions, page-specific snippets, deeper integration with popular plugins like WooCommerce, Easy Digital Downloads, and so much more. \u003Ca href=\"https:\u002F\u002Fwpcode.com\u002F?utm_source=wprepo&utm_medium=link&utm_campaign=liteplugin\" rel=\"nofollow ugc\">Click here to purchase the best premium WordPress code snippet plugin now!\u003C\u002Fa>\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Ch4>Future Proof Code Snippet Management\u003C\u002Fh4>\n\u003Cp>Most \u003Ca href=\"https:\u002F\u002Fwww.wpbeginner.com\u002Fcategory\u002Fwp-tutorials\u002F\" rel=\"nofollow ugc\">WordPress tutorial websites\u003C\u002Fa> ask you to add code snippets to your theme’s functions.php file. This makes managing code snippets messy, and it also prevents you from updating your theme.\u003C\u002Fp>\n\u003Cp>If you ever update your theme or switch to another theme, then you will lose all custom code functions that you added in your functions.php file.\u003C\u002Fp>\n\u003Cp>WPCode solves this by providing you an easy way to insert header and footer scripts along with other code snippets directly from your WordPress dashboard. These code snippets actually run as if they were in your theme’s functions.php file.\u003C\u002Fp>\n\u003Cp>Our smart code snippet validation helps you prevent common code errors to ensure you never break your website when adding code snippets or header and footer scripts.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>New WPCode Cloud Library\u003C\u002Fstrong> even allows you to store all your custom code snippets in a cloud library, so you can easily re-use code snippets across multiple website projects and save time. You can keep your code snippets completely private or \u003Ca href=\"https:\u002F\u002Flibrary.wpcode.com\u002F?utm_source=wprepo&utm_medium=link&utm_campaign=liteplugin\" rel=\"nofollow ugc\">share it with the community\u003C\u002Fa> to give back while boosting your social profile.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>This plugin allows me to not only add things to my site whenever needed, but it takes me only seconds to accomplish it.\u003Cbr \u002F>\n  David Weber – WordPress user\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Ch4>Full Code Snippets Library and Code Generators\u003C\u002Fh4>\n\u003Cp>Ever wanted a central place to find all the most popular WordPress code snippets that are tested and proven to work?\u003C\u002Fp>\n\u003Cp>When we started Insert Headers and Footers plugin, we did too. So we built a WordPress code snippets library right inside the WPCode plugin.\u003C\u002Fp>\n\u003Cp>You will find verified PHP code snippets for popular feature requests like disable REST API, disable XML-RPC, disable comments, allow SVG file uploads, disable Gutenberg, add Classic Editor, and more without installing separate plugins for each.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>I was very hesitant to get into any of the code for my website. Your plugin made it easy for me to do.\u003Cbr \u002F>\n  Conbrio75 – WordPress user\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>We also built the ability to save your code snippets to \u003Ca href=\"https:\u002F\u002Flibrary.wpcode.com\u002F?utm_source=wprepo&utm_medium=link&utm_campaign=liteplugin\" rel=\"nofollow ugc\">WPCode Cloud Library\u003C\u002Fa>, so you can easily re-use it on your other websites, client projects, or even share it with the larger community.\u003C\u002Fp>\n\u003Cp>WPCode Cloud Library helps you better organize your code snippets in one central location, so you can save more time and speed up your workflow when managing websites. No more wasting time looking for custom notes or Github gists.\u003C\u002Fp>\n\u003Cp>Aside from our growing code snippets library, we also have WordPress code generators to help you quickly get ready-to-use custom code using the latest WordPress coding standards and API’s.\u003C\u002Fp>\n\u003Ch4>Conditional Logic for Code Snippets + Code Insertion Priority\u003C\u002Fh4>\n\u003Cp>Our goal with WPCode was to create a WordPress code snippets plugin that’s both EASY and POWERFUL.\u003C\u002Fp>\n\u003Cp>That’s why aside from our global header and footer scripts, we added advanced features like conditional logic for code snippets and made it easy.\u003C\u002Fp>\n\u003Cp>Instead of learning WordPress conditional logic queries, you can use our beginner-friendly conditional logic user interface to:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Load code snippets for logged in users only\u003C\u002Fli>\n\u003Cli>Load PHP code snippets for specific user roles\u003C\u002Fli>\n\u003Cli>Load PHP code snippets only on specific page URLs\u003C\u002Fli>\n\u003Cli>Insert header and footer pixel scripts on specific pages\u003C\u002Fli>\n\u003Cli>Show code snippets based on type of page\u003C\u002Fli>\n\u003Cli>Run code snippet only on certain post types\u003C\u002Fli>\n\u003Cli>Load header and footer code snippet based on referrer source\u003C\u002Fli>\n\u003Cli>and more…\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>We also added both automatic code insertion and manual code output using shortcodes.\u003C\u002Fp>\n\u003Cp>Our Auto Insert feature allows you to run the code snippet everywhere or choose from custom options like:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Run code snippet only on frontend\u003C\u002Fli>\n\u003Cli>Run code snippet only in WordPress admin area\u003C\u002Fli>\n\u003Cli>Add header and footer scripts sitewide\u003C\u002Fli>\n\u003Cli>Insert PHP code snippet before or after post content\u003C\u002Fli>\n\u003Cli>Insert code snippet before or after specific paragraph\u003C\u002Fli>\n\u003Cli>Insert code snippet on specific archive pages\u003C\u002Fli>\n\u003Cli>Insert code snippets after specific WooCommerce function (\u003Ca href=\"https:\u002F\u002Fwpcode.com\u002F?utm_source=wprepo&utm_medium=link&utm_campaign=liteplugin\" rel=\"nofollow ugc\">Pro Feature\u003C\u002Fa>)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Aside from that, we also added a visual code snippet priority system, so you can choose the order for your custom functions to avoid code conflict.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>This is such a useful plugin! It makes it so much easier to include things on your website!\u003Cbr \u002F>\n  Understoryliving – WordPress user\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>And for even more flexibility and customization, we have added the ability for you to add page-specific code snippets right from the WordPress classic editor as well as the Gutenberg editor. You can even load code snippets based on device type such as mobile only code snippets, desktop only code snippets, etc.\u003C\u002Fp>\n\u003Ch4>Import and Export Code Snippets\u003C\u002Fh4>\n\u003Cp>Managing multiple websites or developing in a staging environment?\u003C\u002Fp>\n\u003Cp>We offer an easy way to import and export your custom code snippets, functions, and header and footer scripts to help you save time.\u003C\u002Fp>\n\u003Cp>You can also save your code snippets to WPCode Cloud (Pro feature), so you can easily re-use the same code snippets across multiple websites. This also allows you to better organize your code snippets instead of wasting time searching for random Github gists.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Simple plugin I use in quite every site. Very useful to insert scripts and tags.\u003Cbr \u002F>\n  tommasoperego – WordPress user\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Ch4>Full WPCode Feature List\u003C\u002Fh4>\n\u003Cp>The simple interface of WPCode plugin (formerly known as Insert Headers and Footers) gives you one place where you can insert header and footer scripts as well as custom code snippets rather than dealing with dozens of different plugins.\u003C\u002Fp>\n\u003Cp>Below is a full list of WPCode features:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Quick to set up\u003C\u002Fli>\n\u003Cli>Unlimited code snippets\u003C\u002Fli>\n\u003Cli>Simple to insert header and footer scripts globally\u003C\u002Fli>\n\u003Cli>Beginner Friendly Code Editor with Syntax Highlighter for PHP, JavaScript, and HTML\u003C\u002Fli>\n\u003Cli>Smart Code Validation to Prevent PHP Errors\u003C\u002Fli>\n\u003Cli>Insert header code and\u002For footer code using Conditional Logic\u003C\u002Fli>\n\u003Cli>Add \u003Cstrong>Google Analytics\u003C\u002Fstrong> code to header and footer\u003C\u002Fli>\n\u003Cli>Add \u003Cstrong>custom CSS\u003C\u002Fstrong> code to any theme\u003C\u002Fli>\n\u003Cli>Insert \u003Cstrong>Facebook pixel\u003C\u002Fstrong> code in header and footer\u003C\u002Fli>\n\u003Cli>Insert any code or script, including HTML and Javascript\u003C\u002Fli>\n\u003Cli>Insert PHP Code Snippets\u003C\u002Fli>\n\u003Cli>Ready-made Code Snippet Library\u003C\u002Fli>\n\u003Cli>Custom WordPress Code Snippet Generator\u003C\u002Fli>\n\u003Cli>Show or Hide PHP Code Snippets based on conditional logic\u003C\u002Fli>\n\u003Cli>Run PHP code and custom code snippets everywhere or in select areas using smart auto-insert rules.\u003C\u002Fli>\n\u003Cli>Manually insert PHP code snippets using shortcodes anywhere on website\u003C\u002Fli>\n\u003Cli>Add Rich Text Ads and Content Snippets automatically on posts & pages.\u003C\u002Fli>\n\u003Cli>Export \u002F Import Code Snippets\u003C\u002Fli>\n\u003Cli>\u003Cstrong>New\u003C\u002Fstrong> Save snippets to Cloud Library – All your snippets stored in your private code snippet cloud.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>New\u003C\u002Fstrong> Deep integrations with Gutenberg, WooCommerce, and more.\u003C\u002Fli>\n\u003Cli>Device specific code snippets (such as load code snippets on mobile only, desktop only, etc)\u003C\u002Fli>\n\u003Cli>and more features coming soon.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Credits\u003C\u002Fh4>\n\u003Cp>Insert Headers and Footers plugin was first created by \u003Ca href=\"https:\u002F\u002Fsyedbalkhi.com\u002F\" rel=\"nofollow ugc\">Syed Balkhi\u003C\u002Fa> and the \u003Ca href=\"http:\u002F\u002Fwww.wpbeginner.com\u002F\" rel=\"nofollow ugc\">WPBeginner\u003C\u002Fa> team in 2011.\u003C\u002Fp>\n\u003Cp>It was later rebranded to WPCode in 2022 by Syed Balkhi to add powerful code snippets features that users were requesting for.\u003C\u002Fp>\n\u003Ch4>Branding Guideline\u003C\u002Fh4>\n\u003Cp>WPCode™ is a trademark of WPCode LLC. When writing about the Insert Headers and Footers – Code Snippets plugin by WPCode, please make sure to uppercase the initial 3 letters.\u003C\u002Fp>\n\u003Cp>WPCode (correct)\u003Cbr \u002F>\nWP Code (incorrect)\u003Cbr \u002F>\nwpcode (incorrect)\u003Cbr \u002F>\nwp code snippets (incorrect)\u003C\u002Fp>\n","Easily add code snippets in WordPress. Insert header & footer scripts, add PHP code snippets with conditional logic, insert ads pixel code, and more.",3000000,84645552,98,1783,"2026-03-17T12:35:00.000Z","5.0","7.0",[136,137,138,19,139],"code","code-snippets","css","php","https:\u002F\u002Fwww.wpcode.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Finsert-headers-and-footers.2.3.5.zip",99,"2023-07-17 00:00:00",{"attackSurface":145,"codeSignals":164,"taintFlows":175,"riskAssessment":176,"analyzedAt":185},{"hooks":146,"ajaxHandlers":153,"restRoutes":161,"shortcodes":162,"cronEvents":163,"entryPointCount":65,"unprotectedCount":13},[147],{"type":148,"name":149,"callback":150,"file":151,"line":152},"action","wp_enqueue_scripts","css_flags_enqueue","css-flags.php",43,[154,159],{"action":155,"nopriv":156,"callback":155,"hasNonce":157,"hasCapCheck":156,"file":151,"line":158},"css_flags_loader",false,true,41,{"action":155,"nopriv":157,"callback":155,"hasNonce":157,"hasCapCheck":156,"file":151,"line":160},42,[],[],[],{"dangerousFunctions":165,"sqlUsage":166,"outputEscaping":168,"fileOperations":65,"externalRequests":13,"nonceChecks":78,"capabilityChecks":13,"bundledLibraries":174},[],{"prepared":13,"raw":13,"locations":167},[],{"escaped":65,"rawEcho":78,"locations":169},[170],{"file":171,"line":172,"context":173},"class-css-flags.php",148,"raw output",[],[],{"summary":177,"deductions":178},"The 'css-flags' plugin v0.3.0 presents a generally good security posture based on the provided static analysis. It boasts a small attack surface with only two AJAX entry points, and importantly, none of these are unprotected by authentication checks. The plugin also demonstrates sound practices by using prepared statements for all its SQL queries and avoiding external HTTP requests, which are common vectors for attack. The absence of any recorded vulnerabilities (CVEs) in its history further contributes to this positive outlook.\n\nHowever, there are a few areas that warrant attention and slightly temper the otherwise strong security. The code analysis indicates a lack of capability checks, which means that even if AJAX handlers are authenticated, they may not be verifying if the authenticated user has the necessary permissions to perform the action. Additionally, while most output is properly escaped, there's a significant portion (33%) that is not, introducing a potential risk for cross-site scripting (XSS) vulnerabilities if the unescaped data originates from user input.\n\nIn conclusion, 'css-flags' v0.3.0 is a relatively secure plugin with minimal attack surface and good data handling practices. The primary concerns revolve around the lack of capability checks on its entry points and the presence of unescaped output, which could be exploited to introduce vulnerabilities. Addressing these specific areas would further harden the plugin's security.",[179,182],{"reason":180,"points":181},"Missing capability checks on entry points",5,{"reason":183,"points":184},"Unescaped output detected",4,"2026-03-17T00:51:36.432Z",{"wat":187,"direct":194},{"assetPaths":188,"generatorPatterns":189,"scriptPaths":190,"versionParams":191},[],[],[],[192,193],"css_flags_loader&wpnonce=","?action=css_flags_loader&wpnonce=",{"cssClasses":195,"htmlComments":196,"htmlAttributes":197,"restEndpoints":198,"jsGlobals":199,"shortcodeOutput":200},[],[],[],[],[],[],{"error":157,"url":202,"statusCode":203,"statusMessage":204,"message":204},"http:\u002F\u002Flocalhost\u002Fapi\u002Fplugins\u002Fcss-flags\u002Fbundle",404,"no bundle for this plugin yet",{"slug":4,"current_version":6,"total_versions":13,"versions":206},[]]