[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$ff548HcxGLeBCziVyoX83PcHSzIe3nRAiOGSAyc-W5wM":3},{"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":14,"last_updated":15,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":19,"homepage":18,"download_link":25,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29,"vulnerabilities":30,"developer":31,"crawl_stats":28,"alternatives":36,"analysis":128,"fingerprints":157},"twentyten-ie6-menus","Twenty Ten IE6 Menus","1.0","sara cannon","https:\u002F\u002Fprofiles.wordpress.org\u002Fsaracannon\u002F","\u003Cp>Twentyten is the default theme for WP 3.0 and has beautiful CSS for its menu system. However, if you wanted your menu to drop down in IE6, this does not occur. Use this plugin to make that happen using the jQuery built into WordPress. Many people don’t care about browser compatibility back to IE6, so this plugin is for the few that happen to.\u003C\u002Fp>\n","Use this plugin to make the main menu in the twentyten theme drop down in IE6. Perfect for Child Themes.",20,3175,100,1,"2010-09-01T14:44:00.000Z","3.0.5","3.0","",[20,21,22,23,24],"dropdown","ie6","menus","twenty-ten","twentyten","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ftwentyten-ie6-menus.zip",85,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":32,"display_name":7,"profile_url":8,"plugin_count":14,"total_installs":11,"avg_security_score":26,"avg_patch_time_days":33,"trust_score":34,"computed_at":35},"saracannon",30,84,"2026-04-04T19:19:24.313Z",[37,57,77,94,111],{"slug":38,"name":39,"version":6,"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":17,"requires_php":18,"tags":50,"homepage":55,"download_link":56,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"dropdown-menus","Dropdown Menus","Robert O'Rourke","https:\u002F\u002Fprofiles.wordpress.org\u002Fsanchothefat\u002F","\u003Cp>Sometimes for mobile design or more generally small-screen design it can be beneficial to save space by using a dropdown for your navigation.\u003C\u002Fp>\n\u003Cp>This plugin provides a way to display your custom menus as dropdowns either using a widget or a function call and can be used as an include in any theme.\u003C\u002Fp>\n\u003Ch4>Usage\u003C\u002Fh4>\n\u003Cp>If you are using the plugin with a theme you can use the function \u003Ccode>dropdown_menu()\u003C\u002Fcode> in place of calls to \u003Ccode>wp_nav_menu()\u003C\u002Fcode>.\u003C\u002Fp>\n\u003Cp>The \u003Ccode>dropdown_menu()\u003C\u002Fcode> function takes the same arguments as \u003Ccode>wp_nav_menu()\u003C\u002Fcode> with the addition of three extras:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\ndropdown_menu( array(\n\n    \u002F\u002F You can alter the blanking text eg. \"- Menu Name -\" using the following\n    'dropdown_title' => '-- Main Menu --',\n\n    \u002F\u002F indent_string is a string that gets output before the title of a\n    \u002F\u002F sub-menu item. It is repeated twice for sub-sub-menu items and so on\n    'indent_string' => '- ',\n\n    \u002F\u002F indent_after is an optional string to output after the indent_string\n    \u002F\u002F if the item is a sub-menu item\n    'indent_after' => ''\n\n) );\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>You can extend and alter the output of the dropdowns using the output filters available in the code.\u003C\u002Fp>\n\u003Cp>There are also plenty of styling hooks like in the standard list type menus with the addition of classes for targetting items at a certain depth in the menu (\u003Ccode>.menu-item-depth-1\u003C\u002Fcode> for example) aswell the usual \u003Ccode>.current-menu-item\u003C\u002Fcode> and \u003Ccode>.current-menu-ancestor\u003C\u002Fcode> classes.\u003C\u002Fp>\n\u003Ch4>Filters\u002FHooks\u003C\u002Fh4>\n\u003Cp>\u003Cstrong>dropdown_blank_item_text\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nadd_filter( 'dropdown_blank_item_text', 10, 2 );\nfunction my_dropdown_blank_text( $title, $args ) {\n    return __( '- Browse -' );\n}\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>If you want to show the menu title as the blank item text use the follwing code:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nadd_filter( 'dropdown_blank_item_text', 'dropdown_menu_use_menu_title', 10, 2 );\nfunction dropdown_menu_use_menu_title( $title, $args ) {\n    return '- ' . $args->menu->name . ' -';\n}\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>dropdown_menus_indent_string\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nadd_filter( 'dropdown_menus_indent_string', 10, 4 );\nfunction my_dropdown_indent_string( $indent_string, $item, $depth, $args ) {\n    return str_repeat( '&nbsp;&nbsp;', $depth );\n}\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>dropdown_menus_indent_after\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nadd_filter( 'dropdown_menus_indent_after', 10, 4 );\nfunction my_dropdown_indent_after( $indent_after, $item, $depth, $args ) {\n    return '-';\n}\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>dropdown_menus_class\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Use this if you find you get class name or CSS conflicts, for example with Twitter Bootstrap.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nadd_filter( 'dropdown_menus_class', create_function( '$c', 'return \"my-dropdown-menu-class\";' ) );\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>dropdown_menus_select_current\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Use this filter to stop the output of the \u003Ccode>selected=\"selected\"\u003C\u002Fcode> attribute. Useful if you prefer to show the blank option on every page.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nadd_filter( 'dropdown_menus_select_current', create_function( '$bool', 'return false;' ) );\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Can I make sure this plugin is available to my theme?\u003C\u002Fh4>\n\u003Cp>If your theme requires this plugin to be available it will work as a simple include. Just place the plugin into your theme directory and include dropdown-menus.php from your functions.php file.\u003C\u002Fp>\n\u003Cp>If you place the plugin folder into your theme’s directory you would use the following code in your functions.php file:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nif ( ! function_exists( 'dropdown_menu' ) )\n    include( 'dropdown-menus\u002Fdropdown-menus.php' );\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Display your WordPress menus as a dropdown select box. Great for mobile designs.",300,31221,88,5,"2013-01-16T18:15:00.000Z","3.5.2",[51,22,52,53,54],"dropdowns","mobile","navigation","ui","http:\u002F\u002Finterconnectit.com\u002F?p=2190","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdropdown-menus.1.0.zip",{"slug":58,"name":59,"version":60,"author":61,"author_profile":62,"description":63,"short_description":64,"active_installs":65,"downloaded":66,"rating":67,"num_ratings":68,"last_updated":69,"tested_up_to":70,"requires_at_least":71,"requires_php":18,"tags":72,"homepage":75,"download_link":76,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"accessible-dropdown-menus","Accessible Dropdown Menus","0.4.1","Amy Hendrix (sabreuse)","https:\u002F\u002Fprofiles.wordpress.org\u002Fsabreuse\u002F","\u003Ch4>Purpose:\u003C\u002Fh4>\n\u003Cp>Many sites have dropdown menus where the expanding of the links can only be triggered by a mouse hover. This means that for keyboard only users parts of the site are harder or sometimes impossible to reach.\u003C\u002Fp>\n\u003Cp>This plugin makes these dropdown menus keyboard accessible. When tabbing through the primary navigation the sub level menus will become visible and users will be able to tab to the lower level links.\u003C\u002Fp>\n\u003Cp>The current version has been tested by both sighted keyboard-only users and screen reader users. If it doesn’t work for your reader, please let us know!\u003C\u002Fp>\n\u003Ch4>How it Works:\u003C\u002Fh4>\n\u003Cp>The plugin uses a combination of CSS and javascript to enable the dropdown menus to be keyboard controlled.\u003C\u002Fp>\n\u003Cp>Using the script, whenever a link in the menu gets focus its containing list item (\u003C\u002Fp>\n\u003Cli>) is given the necessary class. This enables the new CSS definitions to open any hidden submenus and bring those links into the tabbing order.\u003C\u002Fli>\n\u003Cp>In the absence of javascript the full submenu lists may not open but the individual sub-links can be tabbed to.\u003C\u002Fp>\n\u003Ch4>Credits:\u003C\u002Fh4>\n\u003Cp>Current version built and maintained by Amy Hendrix.\u003C\u002Fp>\n\u003Cp>The original version of this plugin was built by Graham Armfield. It is still available at http:\u002F\u002Fwww.coolfields.co.uk\u002F2011\u002F12\u002Fwordpress-keyboard-accessible-dropdown-menus-plugin-version-0-1\u002F\u003C\u002Fp>\n\u003Cp>The mechanism used in this plugin is based on the same logic used in Blake Haswell’s excellent example of a multi-level accessible dropdown menu. You can find it at: http:\u002F\u002Fblakehaswell.com\u002Flab\u002Fdropdown\u002Fdeux\u002F\u003C\u002Fp>\n","Makes dropdown menus in many WordPress themes keyboard accessible.",200,11375,86,3,"2013-06-28T16:33:00.000Z","3.6.1","3.4",[73,74,38,22,53],"a11y","accessibility","http:\u002F\u002Fgithub.com\u002Fsabreuse\u002Faccessible-menus","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Faccessible-dropdown-menus.0.4.1.zip",{"slug":78,"name":79,"version":80,"author":81,"author_profile":82,"description":83,"short_description":84,"active_installs":33,"downloaded":85,"rating":27,"num_ratings":27,"last_updated":86,"tested_up_to":87,"requires_at_least":88,"requires_php":89,"tags":90,"homepage":92,"download_link":93,"security_score":13,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"amathia","Amathia: Accessible Dropdown Menus","1.0.3","Marcel Pol","https:\u002F\u002Fprofiles.wordpress.org\u002Fmpol\u002F","\u003Cp>Amathia makes dropdown menus accessible. It adds a button to each dropdown menu, which can be easily clicked to open the submenu.\u003C\u002Fp>\n\u003Ch4>Support\u003C\u002Fh4>\n\u003Cp>If you have a problem or a feature request, please post it on the plugin’s support forum on \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Famathia\" rel=\"ugc\">wordpress.org\u003C\u002Fa>. I will do my best to respond as soon as possible.\u003C\u002Fp>\n\u003Cp>If you send me an email, I will not reply. Please use the support forum.\u003C\u002Fp>\n\u003Cp>Please be aware that this plugin will not fit in with the styling of every theme, often it will require additional CSS styling.\u003Cbr \u002F>\nIt is not possible for me to provide free support in writing your CSS, I expect it will be too much work to do for free.\u003C\u002Fp>\n\u003Ch4>Translations\u003C\u002Fh4>\n\u003Cp>Translations can be added very easily through \u003Ca href=\"https:\u002F\u002Ftranslate.wordpress.org\u002Fprojects\u002Fwp-plugins\u002Famathia\" rel=\"nofollow ugc\">GlotPress\u003C\u002Fa>.\u003Cbr \u002F>\nYou can start translating strings there for your locale. They need to be validated though, so if there’s no validator yet, and you want to apply for being validator (PTE), please post it on the support forum.\u003Cbr \u002F>\nI will make a request on make\u002Fpolyglots to have you added as validator for this plugin\u002Flocale.\u003C\u002Fp>\n\u003Ch4>Demo\u003C\u002Fh4>\n\u003Cp>Check out the demo at \u003Ca href=\"https:\u002F\u002Fsvpegasus.nl\u002F\" rel=\"nofollow ugc\">my local chess club Pegasus\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch4>Compatibility\u003C\u002Fh4>\n\u003Cp>This plugin is compatible with \u003Ca href=\"https:\u002F\u002Fwww.classicpress.net\" rel=\"nofollow ugc\">ClassicPress\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch4>Contributions\u003C\u002Fh4>\n\u003Cp>This plugin is also available in \u003Ca href=\"https:\u002F\u002Fcodeberg.org\u002Fcyclotouriste\u002Famathia\" rel=\"nofollow ugc\">Codeberg\u003C\u002Fa>.\u003C\u002Fp>\n","Amathia makes dropdown menus accessible. It adds a button to each dropdown menu, which can be easily clicked to open the submenu.",2575,"2026-01-10T09:19:00.000Z","6.9.4","4.4","7.0",[73,74,38,91],"navigation-menus","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Famathia\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Famathia.1.0.3.zip",{"slug":95,"name":96,"version":97,"author":98,"author_profile":99,"description":100,"short_description":101,"active_installs":33,"downloaded":102,"rating":27,"num_ratings":27,"last_updated":103,"tested_up_to":104,"requires_at_least":17,"requires_php":18,"tags":105,"homepage":109,"download_link":110,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"ie6-support-for-2010-theme","IE6 Support for Twenty Ten Theme","1.0.1","Aleksei Tepljakov","https:\u002F\u002Fprofiles.wordpress.org\u002Ffirelord\u002F","\u003Cp>The following fixes are included:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Header drop-down menu fix (works as expected with first 5 levels of page includes, requires JavaScript enabled in IE6)\u003C\u002Fli>\n\u003Cli>Header menu width fix\u003C\u002Fli>\n\u003Cli>Incorrectly floating avatars in comments fix\u003C\u002Fli>\n\u003Cli>Font fixes\u003C\u002Fli>\n\u003Cli>Widget title fix\u003C\u002Fli>\n\u003Cli>Comment input form resizing bug fix\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>If there is need to alter styles associated with these fixes (for example, for a child theme), one may edit the \u003Ccode>css\u002Fie6fix.css\u003C\u002Fcode> file included in this release.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>NOTE: This plugin is only effective for Internet Explorer 6 with the Twenty Ten theme (and child themes). All the style fixes will be ignored by other browsers.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch3>Credits\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Alexei Teplyakov (Firelord): WordPress plugin and minor CSS fixes;\u003C\u002Fli>\n\u003Cli>Peter Nederlof (Peterned): Whatever:hover HTC script.\u003C\u002Fli>\n\u003C\u002Ful>\n","This plugin brings Internet Explorer 6 support for the new default Wordpress theme Twenty Ten.",4940,"2011-09-05T19:47:00.000Z","3.2.1",[106,107,21,108,23],"2010","browser-support","internet-explorer-6","http:\u002F\u002Ffirelords.net\u002Fwp-plugins\u002Fie6-support-2010\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fie6-support-for-2010-theme.1.0.1.zip",{"slug":112,"name":113,"version":114,"author":115,"author_profile":116,"description":117,"short_description":118,"active_installs":11,"downloaded":119,"rating":27,"num_ratings":27,"last_updated":120,"tested_up_to":121,"requires_at_least":122,"requires_php":18,"tags":123,"homepage":126,"download_link":127,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"cms-navigation","CMS Navigation","1.4.2","Amir Helzer","https:\u002F\u002Fprofiles.wordpress.org\u002Famirhelzer\u002F","\u003Ch4>Update\u003C\u002Fh4>\n\u003Cp>\u003Cstrong>Our new plugin, \u003Ca href=\"http:\u002F\u002Fwpml.org\" rel=\"nofollow ugc\">WPML\u003C\u002Fa>, includes the functionality of \u003Cem>CMS Navigation\u003C\u002Fem> and is recommended for new designs.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>It features much cleaner and simpler HTML and customization via the admin screen.\u003C\u002Fp>\n\u003Cp>Additionally, we recommend you checkout our new CMS enabling plugins \u003Cstrong>Types\u003C\u002Fstrong> and \u003Cstrong>Views\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fwp-types.com\u002Fhome\u002Ftypes-manage-post-types-taxonomy-and-custom-fields\u002F\" rel=\"nofollow ugc\">Types – The Custom Types and Custom Fields Plugin\u003C\u002Fa> – manages custom content type, including post types, taxonomy and custom fields.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fwp-types.com\u002F\" rel=\"nofollow ugc\">Views – The Custom Content Display Plugin\u003C\u002Fa> – displays custom content types in whatever way you choose.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>With Types and Fields, you can achieve the functionality of this plugin yourself and customize it in whatever way you like.\u003C\u002Fp>\n\u003Ch4>Legacy Stuff\u003C\u002Fh4>\n\u003Cp>Do you want to use WordPress to create a full website, with easy navigation and menus?\u003Cbr \u002F>\nThis plugin will let you add essential navigation functions to your template, including:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Top navigation bar, listing the top-level pages and their children (as drop-down items).\u003C\u002Fli>\n\u003Cli>Breadcrumbs trail navigation that shows the path to the current page all the way from the home page.\u003C\u002Fli>\n\u003Cli>Left navigation that shows where the visitor is next to the page’s parent and nearby pages.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>No configuration is required. To use, add the calls that create each navigation element to your template.\u003Cbr \u002F>\nThese calls can be added to any WP template\u003C\u002Fp>\n\u003Cp>There are three template functions that can be used for displaying the navigation sections\u003C\u002Fp>\n\u003Ch4>Drop down top menu\u003C\u002Fh4>\n\u003Cp>Function:\u003Cbr \u002F>\n    cms_navigation_menu_nav($order=’menu_order’, $show_cat_menu=false, $catmenu_title=’News’)\u003C\u002Fp>\n\u003Cp>This will display the top navigation – the top level pages with their sub pages as drop down elements.\u003Cbr \u002F>\nAdditionally – if specified – the menu will include the top level post categories at the end.\u003C\u002Fp>\n\u003Cp>Normally, this function is added to your header.php file, so that it applies to the entire website.\u003C\u002Fp>\n\u003Cp>Examples:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>\u003C?php cms_navigation_menu_nav() ?>\u003C\u002Fcode> – include without the categories menu.\u003C\u002Fli>\n\u003Cli>\u003Ccode>\u003C?php cms_navigation_menu_nav('post_title') ?>\u003C\u002Fcode> – sort items by title.\u003C\u002Fli>\n\u003Cli>\u003Ccode>\u003C?php cms_navigation_menu_nav('menu_order',true,'News') ?>\u003C\u002Fcode> – sort items according to the ‘order’ field.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Breadcrumbs trail navigation\u003C\u002Fh4>\n\u003Cp>Function:\u003Cbr \u002F>\n    cms_navigation_breadcrumb()\u003C\u002Fp>\n\u003Cp>This will display a path from the current page all the way to the home page.\u003Cbr \u002F>\nIt’s useful for visitors who land in your website to know where they are and be able to navigate to relevant pages.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>For posts\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Home >> CATEGORY-NAME >> Post title\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>For pages\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Home >> Parent pages... >> Page title\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>All the items back to the home page will be clickable.\u003C\u002Fp>\n\u003Cp>You can add this function to single.php and page.php so that it will produce trail navigation for every page or post.\u003C\u002Fp>\n\u003Ch4>Sidebar navigation\u003C\u002Fh4>\n\u003Cp>Function:\u003Cbr \u002F>\n    cms_navigation_page_navigation($order=’menu_order’)\u003C\u002Fp>\n\u003Cp>This will display the sidebar navigation for pages.\u003Cbr \u002F>\nIt will show a tree created the page parents and it’s ‘brother’ pages (other children to the same parent).\u003C\u002Fp>\n\u003Cp>This function should be added to page.php, as it provides local navigation between pages.\u003C\u002Fp>\n\u003Ch4>Live example using this plugin\u003C\u002Fh4>\n\u003Cp>\u003Ca href=\"http:\u002F\u002Fwww.baripedia.com\" title=\"Tourist resource site for the city of Bariloche\" rel=\"nofollow ugc\">Baripedia\u003C\u002Fa> is using this plugin (and other CMS related plugins we’ve written).\u003C\u002Fp>\n\u003Ch3>Version History\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Version 0.1\n\u003Cul>\n\u003Cli>First public release.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>Version 0.2\n\u003Cul>\n\u003Cli>Removed some of unneeded formatting.\u003C\u002Fli>\n\u003Cli>Added option to set the tag around sidebar navigation heading.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>Version 1.2\n\u003Cul>\n\u003Cli>Handles setting static pages for homepage and blog page.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>Version 1.2.1\n\u003Cul>\n\u003Cli>Added static home page to top navigation\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>Version 1.3\n\u003Cul>\n\u003Cli>Works with IE6 as well as other browsers (didn’t support IE6 before)\u003C\u002Fli>\n\u003Cli>Removed the gradient and simplified the CSS for customizing the menus\u003C\u002Fli>\n\u003Cli>The top menu HTML has changed. If the encapsulating DIV has a background, you may need to change or remove it.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>Version 1.4\n\u003Cul>\n\u003Cli>Added feature to exclude pages from the top navigation.\u003C\u002Fli>\n\u003Cli>Added GUI for controlling page settings (instead of editing custom fields).\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>Version 1.4.2\n\u003Cul>\n\u003Cli>Added migration instruction to \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fsitepress-multilingual-cms\u002Fstats\u002F\" title=\"WPML Multilingual CMS\" rel=\"ugc\">WPML\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003C\u002Ful>\n","Out-of-the-box support for full CMS navigation in your WordPress site including drop down menus, breadcrumbs trail and sidebar navigation.",27075,"2011-12-03T14:57:00.000Z","2.7","2.3",[124,20,125,22,53],"cms","menu","http:\u002F\u002Fwpml.org\u002Fwordpress-cms-plugins\u002Fcms-navigation-plugin\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcms-navigation.1.4.2.zip",{"attackSurface":129,"codeSignals":145,"taintFlows":152,"riskAssessment":153,"analyzedAt":156},{"hooks":130,"ajaxHandlers":141,"restRoutes":142,"shortcodes":143,"cronEvents":144,"entryPointCount":27,"unprotectedCount":27},[131,137],{"type":132,"name":133,"callback":134,"file":135,"line":136},"action","after_setup_theme","sara_twentyten_ie6_menus_enqueue","twentyten_ie6.php",13,{"type":132,"name":138,"callback":139,"file":135,"line":140},"wp_footer","sara_twentyten_ie6_menus_script",34,[],[],[],[],{"dangerousFunctions":146,"sqlUsage":147,"outputEscaping":149,"fileOperations":27,"externalRequests":27,"nonceChecks":27,"capabilityChecks":27,"bundledLibraries":151},[],{"prepared":27,"raw":27,"locations":148},[],{"escaped":27,"rawEcho":27,"locations":150},[],[],[],{"summary":154,"deductions":155},"Based on the provided static analysis and vulnerability history, the 'twentyten-ie6-menus' plugin v1.0 exhibits an exceptionally strong security posture. The absence of any identified attack surface, dangerous functions, or taint flows with unsanitized paths is a significant indicator of well-written and secure code. Furthermore, the complete adherence to prepared statements for SQL queries and proper output escaping demonstrates a strong commitment to preventing common web vulnerabilities like SQL injection and cross-site scripting.\n\nThe vulnerability history also paints a picture of a secure plugin, with zero recorded CVEs of any severity. This lack of past issues, combined with the clean code analysis, suggests a mature and stable plugin. The plugin's focus on functionality without introducing complex features like AJAX handlers, REST API routes, or cron events, inherently limits its potential attack vectors.\n\nWhile the plugin demonstrates excellent security practices, the lack of nonces and capability checks, while not an immediate issue given the lack of exposed entry points, could be a potential concern if future updates introduce more interactive features. However, as it stands, the plugin presents a very low security risk.",[],"2026-03-16T22:46:21.876Z",{"wat":158,"direct":163},{"assetPaths":159,"generatorPatterns":160,"scriptPaths":161,"versionParams":162},[],[],[],[],{"cssClasses":164,"htmlComments":165,"htmlAttributes":167,"restEndpoints":168,"jsGlobals":169,"shortcodeOutput":170},[],[166],"\u003C![if lte IE 6]>",[],[],[],[]]