[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fOqBeLmCav1rVn08bq681WLodfp1UsxLdLHX5LJIAXhg":3,"$ffM-dOLRyTacm5wNHMbZYtSRD7tE2waF0HakVt6v1CLY":207,"$fmgdW77F24y2T2B0mjvvkYCTR2tGu94KkgdclvKtSC34":212},{"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":35,"analysis":141,"fingerprints":188},"genesis-admin-bar-plus","Genesis Admin Bar Plus","1.3.0","Gary Jones","https:\u002F\u002Fprofiles.wordpress.org\u002Fgaryj\u002F","\u003Cp>This plugin adds resources links related to the \u003Ca href=\"http:\u002F\u002Fgenesis-theme-framework.com\u002F\" rel=\"nofollow ugc\">Genesis Framework\u003C\u002Fa> to the admin bar.\u003C\u002Fp>\n\u003Cp>These resources include direct links to StudioPress support forums for each theme, quick access to Genesis Theme and SEO settings pages, quick access to Genesis-related plugin settings pages (for those that are active), and links to useful tutorial pages for how to get the most out of Genesis.\u003C\u002Fp>\n\u003Cp>The plugin is built with theme and plugin developers in mind, as they can add support for their product with only a few lines of code, giving their users instant access to the right support board, a link to \u003Cem>their\u003C\u002Fem> website etc.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Adds support for menu item positioning, so custom entries can be added anywhere, and not just as the final items.\u003C\u002Fli>\n\u003Cli>Easy addition of Support board links via single lines in theme \u003Ccode>functions.php\u003C\u002Fcode>.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>This plugin is conceptual fork of the Genesis Admin Bar Addition plugin, re-written from scratch, adding new features.\u003C\u002Fp>\n\u003Cp>Please report issues at https:\u002F\u002Fgithub.com\u002FGaryJones\u002FGenesis-Admin-Bar-Plus\u002Fissues and not the WP Forums.\u003C\u002Fp>\n\u003Ch3>Add Custom Items\u003C\u002Fh3>\n\u003Cp>Here’s an example which removes the StudioPress menu (you only need to remove the parent item to remove all of the child items too), moves the Support menu item to the bottom of the submenu and adds some custom menu items in:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_action( 'gabp_menu_items', 'child_gabp_menu_items', 10, 3 );\n\u002F**\n * Amend the menu items in the Genesis Admin Bar Plus plugin.\n *\n * @param Genesis_Admin_Bar_Plus_Menu $menu\n * @param string $prefix\n * @param string $genesis\n *\u002F\nfunction child_gabp_menu_items( $menu, $prefix, $genesis ) {\n    $garyjones = $prefix . 'gary-jones';\n\n    \u002F\u002F Remove StudioPress item\n    $menu->remove_item('studiopress');\n\n    \u002F\u002F Add Gary Jones item\n    $menu->add_item( 'gary-jones', array(\n        'parent'   => $genesis,\n        'title'    => 'Gary Jones',\n        'href'     => 'http:\u002F\u002Fgaryjones.co.uk\u002F',\n        'position' => 30\n    ) );\n\n    \u002F\u002F Add Gary Jones submenu items\n    $menu->add_item( 'code-gary-jones', array(\n        'parent'   => $garyjones,\n        'title'    => 'Code Gallery',\n        'href'     => 'http:\u002F\u002Fcode.garyjones.co.uk\u002F',\n        'position' => 10\n    ) );\n    $menu->add_item( 'garyj', array(\n        'parent'   => $garyjones,\n        'title'    => 'GaryJ',\n        'href'     => 'http:\u002F\u002Ftwitter.com\u002FGaryJ',\n        'position' => 20\n    ) );\n\n    \u002F\u002F Amend position of Support menu item - child items will move correctly too\n    \u002F\u002F as of v1.1\n    $menu->edit_item( 'support', array(\n        'position' => 50\n    ) );\n}\u003Ch3>Add Support Boards\u003C\u002Fh3>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>To a add a reference to a support board (perhaps for the child theme the active theme is based on, or a plugin the site uses, etc), you can add something like one of the following to the child theme \u003Ccode>functions.php\u003C\u002Fcode> file.\u003Cbr \u002F>\n    add_theme_support(‘gabp-support-genesis’); \u002F\u002F Adds direct link to Genesis support board\u003Cbr \u002F>\n    add_theme_support(‘gabp-support-pretty-young-thing’); \u002F\u002F Adds link to Pretty Young Thing child theme support board\u003Cbr \u002F>\n    add_theme_support(‘gabp-support-prose’);  \u002F\u002F Adds link to Prose child theme support board\u003Cbr \u002F>\n    add_theme_support(‘gabp-support-focus’); \u002F\u002F Adds link to Focus child theme support board\u003Cbr \u002F>\n    add_theme_support(‘gabp-support-translations’); \u002F\u002F Adds direct link to Genesis Translations support board\u003Cbr \u002F>\n    add_theme_support(‘gabp-support-plugins’); \u002F\u002F Adds direct link to StudioPress Plugins support board\u003Cbr \u002F>\n    add_theme_support(‘gabp-support-genesisconnect’); \u002F\u002F Adds direct link to GenesisConnect support board\u003Cbr \u002F>\nFor child themes, the bit after the \u003Ccode>gabp-support-\u003C\u002Fcode> string must be the theme name, lowercase, with spaces replaced with hyphens.\u003C\u002Fp>\n\u003Ch3>Translations\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Deutsch: http:\u002F\u002Fdeckerweb.de\u002Fmaterial\u002Fsprachdateien\u002Fgenesis-plugins\u002F#genesis-admin-bar-plus\u003C\u002Fli>\n\u003Cli>Italiano: http:\u002F\u002Fgidibao.net\u002F\u003C\u002Fli>\n\u003C\u002Ful>\n","Adds resource links related to the Genesis Framework to the admin bar.",100,15344,0,"2012-02-11T17:33:00.000Z","3.3.2","3.3","",[19,20],"admin-bar","genesis","http:\u002F\u002Fcode.garyjones.co.uk\u002Fplugins\u002Fgenesis-admin-bar-plus\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.3.0.zip",85,null,"2026-04-16T10:56:18.058Z","no_bundle",[],{"slug":29,"display_name":7,"profile_url":8,"plugin_count":30,"total_installs":31,"avg_security_score":23,"avg_patch_time_days":32,"trust_score":33,"computed_at":34},"garyj",8,920,30,84,"2026-05-20T03:20:46.477Z",[36,60,79,98,119],{"slug":37,"name":38,"version":39,"author":40,"author_profile":41,"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":50,"requires_php":51,"tags":52,"homepage":57,"download_link":58,"security_score":59,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":25},"genesis-enews-extended","Genesis eNews Extended","2.2.0","Brandon Kraft","https:\u002F\u002Fprofiles.wordpress.org\u002Fkraftbj\u002F","\u003Cp>Creates a new widget to easily add mailing lists to a Genesis website. Recommended plugin in virtually all Genesis theme tutorials. The widget allows the site administrator to set either the Feedburner ID or form action, e-mail form field and hidden fields to mimic the subscribe form of other mailing list services.\u003C\u002Fp>\n\u003Ch3>Thanks\u003C\u002Fh3>\n\u003Cp>A special thanks to all who have contributed to Genesis eNews Extended.\u003C\u002Fp>\n\u003Ch4>Financial Donations\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Joe Taylor\u003C\u002Fli>\n\u003Cli>Dorian Speed\u003C\u002Fli>\n\u003Cli>Paul Meyers\u003C\u002Fli>\n\u003Cli>Joel Runyon\u003C\u002Fli>\n\u003Cli>Jennifer Jinright\u003C\u002Fli>\n\u003Cli>Greg Ferro\u003C\u002Fli>\n\u003Cli>Greg Young\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Code Contributions\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Gary Jones (many, many times over)\u003C\u002Fli>\n\u003Cli>Mike Hemberger\u003C\u002Fli>\n\u003Cli>John Levandowski\u003C\u002Fli>\n\u003Cli>David Decker\u003C\u002Fli>\n\u003Cli>Kim Parsell\u003C\u002Fli>\n\u003Cli>Erick Nelson\u003C\u002Fli>\n\u003Cli>Nick Davis\u003C\u002Fli>\n\u003Cli>Maor Chasen\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Translations\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>David Decker (German)\u003C\u002Fli>\n\u003Cli>Branco Radenovich (Slovak)\u003C\u002Fli>\n\u003Cli>Marco Galasso (Italian)\u003C\u002Fli>\n\u003Cli>Ryan Sullivan (Spanish)\u003C\u002Fli>\n\u003Cli>Paul de Wouters (French)\u003C\u002Fli>\n\u003Cli>Diane S (Serbian)\u003C\u002Fli>\n\u003Cli>Daniel Bailey (Bulgarian)\u003C\u002Fli>\n\u003Cli>Gary Jones (British English)\u003C\u002Fli>\n\u003Cli>Fabiana Simões (Portuguese-Brazil)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>StudioPress\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Special thanks to Brian Gardner and the team at StudioPress who wrote the original code that provided the foundation for the plugin.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>If you’re not listed and think you should be, please drop me a note. Any omission is, in no way, intentional.\u003C\u002Fp>\n","Creates a new widget to easily add mailing lists integration to a Genesis website. Works with FeedBurner, MailChimp, AWeber, FeedBlitz, ConvertKit and &hellip;",40000,1122102,94,28,"2025-04-29T18:46:00.000Z","6.8.5","4.9.6","5.4.0",[53,20,54,55,56],"aweber","genesiswp","mailchimp","studiopress","https:\u002F\u002Fkraft.blog\u002Fgenesis-enews-extended\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-enews-extended.2.2.0.zip",92,{"slug":61,"name":62,"version":63,"author":64,"author_profile":65,"description":66,"short_description":67,"active_installs":68,"downloaded":69,"rating":59,"num_ratings":70,"last_updated":71,"tested_up_to":72,"requires_at_least":73,"requires_php":74,"tags":75,"homepage":77,"download_link":78,"security_score":11,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":25},"genesis-simple-hooks","Genesis Simple Hooks","2.3.2","Nathan Rice","https:\u002F\u002Fprofiles.wordpress.org\u002Fnathanrice\u002F","\u003Cp>This plugin creates a new Genesis settings page that allows you to insert code (HTML, Shortcodes, and PHP), and attach it to any of the 50+ action hooks throughout the Genesis Theme Framework, from StudioPress.\u003C\u002Fp>\n\u003Cp>Instead of the sometimes tedious and unfamiliar process of creating functions in your theme files, this plugin gives you an attractive, easy to use interface for modifying your Genesis theme via the hook system. The plugin accepts HTML, Shortcodes, and PHP and gives you access to all 50+ hooks built into the Genesis theme, and a few built-in WordPress hooks as well.\u003C\u002Fp>\n\u003Ch3>Code Snippets\u003C\u002Fh3>\n\u003Cp>The most common request from Genesis users is how to properly modify their footer, post-info, and post-meta text. Here are some code snippets that might prove helpful in doing this:\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Modifying the post-info\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003Cdiv class=\"post-info\">\n    \u003Cspan class=\"time\">\u003C?php the_time('F j, Y'); ?>\u003C\u002Fspan> \u003Cspan class=\"author\">by \u003C?php the_author_posts_link(); ?>\u003C\u002Fspan> \u003Cspan class=\"post-comments\">\u003Ca href=\"\u003C?php the_permalink(); ?>#respond\">\u003C?php comments_number('Leave a Comment', '1 Comment', '% Comments'); ?>\u003C\u002Fa>\u003C\u002Fspan> \u003Ca class=\"post-edit-link\">\u003C?php edit_post_link('(Edit)', '', ''); ?>\u003C\u002Fa>\n\u003C\u002Fdiv>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Modifying the post-meta\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003Cdiv class=\"post-meta\">\n    \u003Cspan class=\"categories\">Filed under: \u003C?php the_category(', ') ?>\u003C\u002Fspan>  \u003Cspan class=\"tags\">Tagged with \u003C?php the_tags('') ?>\u003C\u002Fspan>\n\u003C\u002Fdiv>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Modifying the Footer\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003Cdiv class=\"gototop\">\n    \u003Cp>\u003Ca href=\"#wrap\" rel=\"nofollow\">Return to top of page\u003C\u002Fa>\u003C\u002Fp>\n\u003C\u002Fdiv>\n\u003Cdiv class=\"creds\">\n    \u003Cp>Copyright &copy; \u003C?php echo date('Y'); ?> &middot; \u003Ca href=\"http:\u002F\u002Fwww.studiopress.com\u002Fthemes\u002Fgenesis\" title=\"Genesis Theme Framework\">Genesis Theme Framework\u003C\u002Fa> by \u003Ca href=\"http:\u002F\u002Fwww.studiopress.com\u002F\">StudioPress\u003C\u002Fa> &middot; \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002F\" title=\"WordPress\">WordPress\u003C\u002Fa> &middot; \u003C?php wp_loginout(); ?>\u003C\u002Fp>\n\u003C\u002Fdiv>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cem>Note: You must have the \u003Ccode>Execute PHP on this hook\u003C\u002Fcode> option selected in order to use template tags\u003C\u002Fem>\u003C\u002Fp>\n","This plugin creates a new Genesis settings page that allows you to insert code (HTML, Shortcodes, and PHP), and attach it to any of the 50+ action hoo &hellip;",20000,804398,22,"2026-03-31T14:50:00.000Z","7.0","4.7.2","7.2",[20,54,76,56],"hooks","http:\u002F\u002Fwww.studiopress.com\u002Fplugins\u002Fsimple-hooks","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-simple-hooks.2.3.2.zip",{"slug":80,"name":81,"version":82,"author":83,"author_profile":84,"description":85,"short_description":86,"active_installs":68,"downloaded":87,"rating":88,"num_ratings":32,"last_updated":89,"tested_up_to":49,"requires_at_least":90,"requires_php":91,"tags":92,"homepage":96,"download_link":97,"security_score":11,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":25},"hide-admin-bar","Hide Admin Bar","1.0.2","David Vongries","https:\u002F\u002Fprofiles.wordpress.org\u002Fdavidvongries\u002F","\u003Cp>Hides the Admin Bar in WordPress 3.1+.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>New! You can now hide the WordPress admin bar for specific user roles!\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch3>What’s next?\u003C\u002Fh3>\n\u003Cp>If you like Hide Admin Bar, you will love our other, free WordPress products:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fbetteradminbar.com\u002F?utm_source=hide_admin_bar&utm_medium=repository&utm_campaign=bab\" rel=\"nofollow ugc\">Better Admin Bar\u003C\u002Fa>\u003C\u002Fstrong> – The plugin to make your clients enjoy WordPress. It replaces the default admin bar to provide the best possible user experience when editing & navigating a website.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwp-pagebuilderframework.com\u002F?utm_source=hide_admin_bar&utm_medium=repository&utm_campaign=wpbf\" rel=\"nofollow ugc\">Page Builder Framework\u003C\u002Fa>\u003C\u002Fstrong> – A fast & minimalistic WordPress theme designed for the new WordPress era.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fultimatedashboard.io\u002F?utm_source=hide_admin_bar&utm_medium=repository&utm_campaign=udb\" rel=\"nofollow ugc\">Ultimate Dashboard\u003C\u002Fa>\u003C\u002Fstrong> – The #1 WordPress plugin to customize your WordPress dashboard and admin area.\u003C\u002Fli>\n\u003C\u002Ful>\n","Hide the Admin Bar in WordPress 3.1+.",810224,90,"2025-11-04T09:02:00.000Z","3.1","5.6",[93,19,94,95,80],"admin","hidden","hide","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fhide-admin-bar\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fhide-admin-bar.1.0.2.zip",{"slug":99,"name":100,"version":101,"author":102,"author_profile":103,"description":104,"short_description":105,"active_installs":68,"downloaded":106,"rating":107,"num_ratings":108,"last_updated":109,"tested_up_to":72,"requires_at_least":110,"requires_php":91,"tags":111,"homepage":115,"download_link":116,"security_score":11,"vuln_count":117,"unpatched_count":13,"last_vuln_date":118,"fetched_at":25},"hide-admin-bar-based-on-user-roles","Hide Admin Bar Based on User Roles","7.2.1","Ankit Panchal","https:\u002F\u002Fprofiles.wordpress.org\u002Fankitmaru\u002F","\u003Cp>\u003Cstrong>Hide Admin Bar Based On User Roles\u003C\u002Fstrong> gives you complete control over who sees the WordPress toolbar.\u003C\u002Fp>\n\u003Cp>Whether you are running a membership site, a WooCommerce store, or simply want a cleaner frontend for your subscribers, this plugin lets you hide the admin bar with precision — by role, capability, device, page, or time. Stop exposing backend links to users who don’t need them.\u003C\u002Fp>\n\u003Cp>The plugin is lightweight, developer-friendly, and works immediately upon activation — no configuration required to get started.\u003C\u002Fp>\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\u002F25WBldgArAk?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\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\u002F_BAwxGVnKNY?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>Simple but great plugin. 🙂\u003Cbr \u002F>\n  – \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fsimple-but-great-plugin-12\u002F\" rel=\"ugc\">wptoolsdev\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Works flawlessly! 🙂\u003Cbr \u002F>\n  – \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fworks-flawlessly-129\u002F\" rel=\"ugc\">thebrazeneye\u003C\u002Fa>\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Ch3>🚀 Key Features (Free)\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Cstrong>Hide for All Users:\u003C\u002Fstrong> Completely remove the admin bar from the frontend for everyone.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Hide for Guests:\u003C\u002Fstrong> Ensure non-logged-in visitors never see the toolbar.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Role-Based Hiding:\u003C\u002Fstrong> Select specific roles (e.g., Subscriber, Customer, Editor) to hide the bar for.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Capability-Based Hiding:\u003C\u002Fstrong> Hide the bar based on WordPress capabilities (e.g., hide for anyone who cannot \u003Ccode>manage_options\u003C\u002Fcode>).\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Lightweight & Fast:\u003C\u002Fstrong> Zero bloat — no external requests, no database overhead on the frontend.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>🏆 Premium Features (Pro)\u003C\u002Fh3>\n\u003Cp>Unlock advanced visibility logic with the \u003Ca href=\"https:\u002F\u002Fpluginstack.dev\u002Fplugins\u002Fhide-admin-bar-pro\" rel=\"nofollow ugc\">Pro version\u003C\u002Fa>:\u003Cbr \u002F>\n* \u003Cstrong>Page-Based Targeting:\u003C\u002Fstrong> Show or hide the admin bar only on specific URLs, post types, or page templates.\u003Cbr \u002F>\n* \u003Cstrong>Device Detection:\u003C\u002Fstrong> Hide the toolbar on Mobile or Tablet to save screen space, while keeping it on Desktop.\u003Cbr \u002F>\n* \u003Cstrong>Per-User Overrides:\u003C\u002Fstrong> Manually force the admin bar to show or hide for individual user accounts.\u003Cbr \u002F>\n* \u003Cstrong>Time-Based Visibility:\u003C\u002Fstrong> Automatically hide the bar during specific hours of the day.\u003Cbr \u002F>\n* \u003Cstrong>Smart Redirects:\u003C\u002Fstrong> Redirect users to the homepage or a custom URL when they try to access the backend.\u003Cbr \u002F>\n* \u003Cstrong>Inactivity Auto-Hide:\u003C\u002Fstrong> Automatically slide the toolbar away after a configurable period of inactivity.\u003Cbr \u002F>\n* \u003Cstrong>Import \u002F Export Settings:\u003C\u002Fstrong> Back up and migrate your configuration across sites in one click.\u003C\u002Fp>\n\u003Ch3>You can check our other plugins:\u003C\u002Fh3>\n\u003Col>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fultimakit-for-wp\u002F\" rel=\"ugc\">All-in-One WordPress Toolkit for SEO, Security, Customization, and Performance\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Flike-dislike-for-wp\u002F\" rel=\"ugc\">Like Dislike For WP\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fdisable-block-editor-fullscreen-mode\u002F\" rel=\"ugc\">Disable Block Editor FullScreen mode\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fnoteflow\u002F\" rel=\"ugc\">NoteFlow – Smart Notes Manager for WordPress Admin\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Fol>\n","Hide the WordPress Admin Bar for specific user roles, capabilities, devices, pages, or time windows. The ultimate toolbar control plugin for membershi &hellip;",786650,78,20,"2026-04-13T18:20:00.000Z","5.5",[19,112,80,113,114],"admin-toolbar","toolbar","user-roles","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fhide-admin-bar-based-on-user-roles\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fhide-admin-bar-based-on-user-roles.7.2.1.zip",1,"2022-02-21 00:00:00",{"slug":120,"name":121,"version":122,"author":123,"author_profile":124,"description":125,"short_description":126,"active_installs":127,"downloaded":128,"rating":129,"num_ratings":130,"last_updated":131,"tested_up_to":132,"requires_at_least":133,"requires_php":17,"tags":134,"homepage":138,"download_link":139,"security_score":59,"vuln_count":117,"unpatched_count":13,"last_vuln_date":140,"fetched_at":25},"genesis-columns-advanced","Genesis Columns Advanced","2.0.5","Nick Diego","https:\u002F\u002Fprofiles.wordpress.org\u002Fndiego\u002F","\u003Cp>\u003Cstrong>Genesis Columns Advanced is nearing the end of its life. The plugin was built for the Classic Editor and is not needed in the block Editor (Gutenberg). Critical support will still be provided in the support forum, but the plugin is no longer being actively developed. Consider transitioning to the native WordPress Columns block.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This plugin was originally designed to generate shortcodes for every column configuration available with the column classes provided by the \u003Ca href=\"http:\u002F\u002Fwww.studiopress.com\" rel=\"nofollow ugc\">Genesis Framework\u003C\u002Fa>, hence the name. We are pleased to announce that as of version 2.0, the plugin is completely standalone and does not require Genesis. The plugin now loads its own CSS styles, which can be disabled if you desire. See the FAQ for more details. By moving away from Genesis, we have been able to add new features, such as the inclusion of fifths, and it opens the door to more enhancements in the future!\u003C\u002Fp>\n\u003Cp>Shortcodes are easily added using a custom button in your WordPress editor. They can also be added manually if you so choose. See the FAQ for more details. Check out the video below for a short demo on the plugin.\u003C\u002Fp>\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\u002FortnpInn_YE?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\u003Ch4>Plugin highlights\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Plugin is fully translatable, .pot file included\u003C\u002Fli>\n\u003Cli>Plugin loads its own CSS column classes and does not require Genesis\u003C\u002Fli>\n\u003Cli>Plugin includes fifths so you can finally add 5 even columns!\u003C\u002Fli>\n\u003Cli>42 different responsive column configurations available\u003C\u002Fli>\n\u003Cli>Add custom CSS classes to any column\u003C\u002Fli>\n\u003Cli>Includes three utility shortcodes to assist with layout, see the FAQ for more info\u003C\u002Fli>\n\u003Cli>Only adds one button to your WordPress editor\u003C\u002Fli>\n\u003Cli>No plugin settings to configure\u003C\u002Fli>\n\u003Cli>Custom button and TinyMCE popup design integrates seamlessly with the core WordPress aesthetic\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>If you have questions or would like to request additional features, such as additional utility shortcodes, please let me know in the plugin support forum.\u003C\u002Fp>\n","Adds shortcodes to easily create up to 42 different columned layouts.",10000,138095,96,25,"2024-06-23T12:19:00.000Z","6.1.10","3.6",[135,20,136,54,137],"columns","genesis-framework","shortcode","https:\u002F\u002Fwww.nickdiego.com\u002Fplugins\u002Fgenesis-columns-advanced","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-columns-advanced.2.0.5.zip","2022-12-29 00:00:00",{"attackSurface":142,"codeSignals":168,"taintFlows":175,"riskAssessment":176,"analyzedAt":187},{"hooks":143,"ajaxHandlers":164,"restRoutes":165,"shortcodes":166,"cronEvents":167,"entryPointCount":13,"unprotectedCount":13},[144,149,153,156,161],{"type":145,"name":146,"callback":146,"file":147,"line":148},"action","init","genesis-admin-bar-plus.php",144,{"type":145,"name":150,"callback":151,"file":147,"line":152},"wp_head","style",167,{"type":145,"name":154,"callback":151,"file":147,"line":155},"admin_head",168,{"type":145,"name":157,"callback":158,"priority":159,"file":147,"line":160},"admin_bar_menu","set_menu_items",95,169,{"type":145,"name":157,"callback":162,"priority":129,"file":147,"line":163},"add_menus",170,[],[],[],[],{"dangerousFunctions":169,"sqlUsage":170,"outputEscaping":172,"fileOperations":13,"externalRequests":13,"nonceChecks":13,"capabilityChecks":13,"bundledLibraries":174},[],{"prepared":13,"raw":13,"locations":171},[],{"escaped":13,"rawEcho":13,"locations":173},[],[],[],{"summary":177,"deductions":178},"The static analysis of genesis-admin-bar-plus v1.3.0 reveals a generally strong security posture.  The plugin demonstrates excellent practices by avoiding dangerous functions, using prepared statements exclusively for SQL queries, and ensuring all outputs are properly escaped.  Furthermore, the absence of file operations and external HTTP requests, along with no recorded vulnerabilities in its history, suggests a well-maintained and secure codebase.\n\nHowever, the analysis also highlights a complete lack of any entry points (AJAX, REST API, shortcodes, cron events) and a complete absence of any form of authentication or capability checks. While this dramatically reduces the attack surface to zero, it also means that if any functionality were to be introduced in the future, it would be entirely unprotected by default, presenting a significant risk of introducing vulnerabilities. The lack of taint analysis data is also a point of concern, as it prevents a deeper understanding of potential data flow risks within the plugin.\n\nIn conclusion, genesis-admin-bar-plus v1.3.0 appears to be a very secure plugin in its current state due to its minimal functionality and robust coding practices. The main weakness lies in the potential for future insecure development due to the absence of any built-in security checks for potential new entry points.",[179,182,184],{"reason":180,"points":181},"No capability checks for potential future entry points",15,{"reason":183,"points":181},"No nonce checks for potential future entry points",{"reason":185,"points":186},"No taint analysis data to assess data flow risks",5,"2026-03-16T20:50:31.265Z",{"wat":189,"direct":196},{"assetPaths":190,"generatorPatterns":192,"scriptPaths":193,"versionParams":194},[191],"\u002Fwp-content\u002Fplugins\u002Fgenesis-admin-bar-plus\u002Fcss\u002Fgenesis-admin-bar-plus.css",[],[],[195],"genesis-admin-bar-plus\u002Fcss\u002Fgenesis-admin-bar-plus.css?ver=",{"cssClasses":197,"htmlComments":199,"htmlAttributes":203,"restEndpoints":204,"jsGlobals":205,"shortcodeOutput":206},[198],"ab-icon",[200,201,202],"Uncomment to activate debug mode for this plugin.","Currently all this does is add the calculated (given child position + parent\n position) menu position to the visible menu item.","You can also put this define in your wp-config.php file, or even just add\n gabp-debug as a querystring parameter to enable it.",[],[],[],[],{"error":208,"url":209,"statusCode":210,"statusMessage":211,"message":211},true,"http:\u002F\u002Flocalhost\u002Fapi\u002Fplugins\u002Fgenesis-admin-bar-plus\u002Fbundle",404,"no bundle for this plugin yet",{"slug":4,"current_version":6,"total_versions":213,"versions":214},14,[215,221,228,235,242,249,256,263,270,277,284,291,298,305],{"version":6,"download_url":22,"svn_tag_url":216,"released_at":24,"has_diff":217,"diff_files_changed":218,"diff_lines":24,"trac_diff_url":219,"vulnerabilities":220,"is_current":208},"https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.3.0\u002F",false,[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.5&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.3.0",[],{"version":222,"download_url":223,"svn_tag_url":224,"released_at":24,"has_diff":217,"diff_files_changed":225,"diff_lines":24,"trac_diff_url":226,"vulnerabilities":227,"is_current":217},"1.2.5","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.2.5.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.2.5\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.4&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.5",[],{"version":229,"download_url":230,"svn_tag_url":231,"released_at":24,"has_diff":217,"diff_files_changed":232,"diff_lines":24,"trac_diff_url":233,"vulnerabilities":234,"is_current":217},"1.2.4","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.2.4.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.2.4\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.3&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.4",[],{"version":236,"download_url":237,"svn_tag_url":238,"released_at":24,"has_diff":217,"diff_files_changed":239,"diff_lines":24,"trac_diff_url":240,"vulnerabilities":241,"is_current":217},"1.2.3","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.2.3.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.2.3\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.2&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.3",[],{"version":243,"download_url":244,"svn_tag_url":245,"released_at":24,"has_diff":217,"diff_files_changed":246,"diff_lines":24,"trac_diff_url":247,"vulnerabilities":248,"is_current":217},"1.2.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.2.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.2.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.1&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.2",[],{"version":250,"download_url":251,"svn_tag_url":252,"released_at":24,"has_diff":217,"diff_files_changed":253,"diff_lines":24,"trac_diff_url":254,"vulnerabilities":255,"is_current":217},"1.2.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.2.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.2.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.0&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.1",[],{"version":257,"download_url":258,"svn_tag_url":259,"released_at":24,"has_diff":217,"diff_files_changed":260,"diff_lines":24,"trac_diff_url":261,"vulnerabilities":262,"is_current":217},"1.2.0","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.2.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.2.0\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.1.4&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.2.0",[],{"version":264,"download_url":265,"svn_tag_url":266,"released_at":24,"has_diff":217,"diff_files_changed":267,"diff_lines":24,"trac_diff_url":268,"vulnerabilities":269,"is_current":217},"1.1.4","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.1.4.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.1.4\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.1.3&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.1.4",[],{"version":271,"download_url":272,"svn_tag_url":273,"released_at":24,"has_diff":217,"diff_files_changed":274,"diff_lines":24,"trac_diff_url":275,"vulnerabilities":276,"is_current":217},"1.1.3","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.1.3.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.1.3\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.1.2&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.1.3",[],{"version":278,"download_url":279,"svn_tag_url":280,"released_at":24,"has_diff":217,"diff_files_changed":281,"diff_lines":24,"trac_diff_url":282,"vulnerabilities":283,"is_current":217},"1.1.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.1.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.1.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.1.1&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.1.2",[],{"version":285,"download_url":286,"svn_tag_url":287,"released_at":24,"has_diff":217,"diff_files_changed":288,"diff_lines":24,"trac_diff_url":289,"vulnerabilities":290,"is_current":217},"1.1.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.1.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.1.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.1&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.1.1",[],{"version":292,"download_url":293,"svn_tag_url":294,"released_at":24,"has_diff":217,"diff_files_changed":295,"diff_lines":24,"trac_diff_url":296,"vulnerabilities":297,"is_current":217},"1.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.0.1&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.1",[],{"version":299,"download_url":300,"svn_tag_url":301,"released_at":24,"has_diff":217,"diff_files_changed":302,"diff_lines":24,"trac_diff_url":303,"vulnerabilities":304,"is_current":217},"1.0.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.0.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.0.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.0&new_path=%2Fgenesis-admin-bar-plus%2Ftags%2F1.0.1",[],{"version":306,"download_url":307,"svn_tag_url":308,"released_at":24,"has_diff":217,"diff_files_changed":309,"diff_lines":24,"trac_diff_url":24,"vulnerabilities":310,"is_current":217},"1.0","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgenesis-admin-bar-plus.1.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fgenesis-admin-bar-plus\u002Ftags\u002F1.0\u002F",[],[]]