[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fWdlKpTS14M5kucb6J8_0uiGGsdPHaoy20ypNgYWWJdw":3},{"slug":4,"display_name":5,"profile_url":6,"plugin_count":7,"total_installs":8,"avg_security_score":9,"avg_patch_time_days":10,"trust_score":11,"computed_at":12,"plugins":13},"willybahuaud","Willy Bahuaud","https:\u002F\u002Fprofiles.wordpress.org\u002Fwillybahuaud\u002F",8,8680,89,30,86,"2026-04-04T09:07:01.257Z",[14,40,60,81,98,117,136,152],{"slug":15,"name":16,"version":17,"author":5,"author_profile":6,"description":18,"short_description":19,"active_installs":20,"downloaded":21,"rating":22,"num_ratings":23,"last_updated":24,"tested_up_to":25,"requires_at_least":26,"requires_php":27,"tags":28,"homepage":34,"download_link":35,"security_score":36,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"multi-image-metabox","Multi Image Metabox","1.3.5","\u003Cp>This plugin add a metabox which allox to upload and link multiple images to one post.\u003Cbr \u002F>\nPictures are linked by the way of meta_value (and attachments ID). They can be reordered using drag and drop.\u003C\u002Fp>\n\u003Cp>Number of allowed pictures and concerned post types can be overited using hooks.\u003C\u002Fp>\n\u003Cp>Plugin includes many functions to retrieve linked pictures.\u003Cbr \u002F>\nFor more information on using the plugin, refer to the section \u003Ca href=\"\u002Fextend\u002Fplugins\u002Fmulti-image-metabox\u002Fother_notes\u002F\" rel=\"nofollow ugc\">“Other Notes”\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Set concerned post types\u003C\u002Fh3>\n\u003Cp>Paste this into your theme’s functions.php file :\n    \u003C\u002Fp>\n\u003Ch3>Set allowed number of picts\u003C\u002Fh3>\n\u003Cp>Paste this into your theme’s functions.php file :\u003Cbr \u002F>\n     ‘_image1’,\u003Cbr \u002F>\n                ‘image2’ => ‘_image2’,\u003Cbr \u002F>\n            );\u003Cbr \u002F>\n            return $picts;\u003Cbr \u002F>\n        }\u003Cbr \u002F>\n    ?>\u003C\u002Fp>\n\u003Ch4>Set allowed number of picts, depending to the post_type\u003C\u002Fh4>\n\u003Cp>Paste this into your theme’s functions.php file :\u003Cbr \u002F>\n    add_filter(‘list_images’,’my_list_images’,10,2);\u003Cbr \u002F>\n    function my_list_images($list_images, $cpt){\u003Cbr \u002F>\n        global $typenow;\u003Cbr \u002F>\n        if($typenow == “my_custom_post_type” || $cpt == “my_custom_post_type”)\u003Cbr \u002F>\n            $picts = array(\u003Cbr \u002F>\n                ‘image1’ => ‘_image1’,\u003Cbr \u002F>\n                ‘image2’ => ‘_image2’,\u003Cbr \u002F>\n                ‘image3’ => ‘_image3’,\u003Cbr \u002F>\n            );\u003Cbr \u002F>\n        else\u003Cbr \u002F>\n            $picts = array(\u003Cbr \u002F>\n                ‘image1’ => ‘_image1’,\u003Cbr \u002F>\n                ‘image2’ => ‘_image2’,\u003Cbr \u002F>\n                ‘image3’ => ‘_image3’,\u003Cbr \u002F>\n                ‘image4’ => ‘_image4’,\u003Cbr \u002F>\n                ‘image5’ => ‘_image5’,\u003Cbr \u002F>\n                ‘image6’ => ‘_image6’,\u003Cbr \u002F>\n                ‘image7’ => ‘_image7’,\u003Cbr \u002F>\n                ‘image8’ => ‘_image8’,\u003Cbr \u002F>\n            );\u003Cbr \u002F>\n        return $picts;\u003Cbr \u002F>\n    }\u003C\u002Fp>\n\u003Ch3>get_images_ids()\u003C\u002Fh3>\n\u003Cp>This function have to be used into a template file, or any function.\u003Cbr \u002F>\nIt return an array of the linked attachments’s ID.\u003C\u002Fp>\n\u003Cp>It take two arguments whose are :\u003C\u002Fp>\n\u003Col>\n\u003Cli>\u003Cstrong>include the thumbnail ?\u003C\u002Fstrong> (boolean) if true include the thumbnail in the returned datas\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>ID\u003C\u002Fstrong> (integer) for targeting images linked to a specific post\u003C\u002Fp>\n\u003Cp> 45,\u003Cbr \u002F>\n    ‘image1’ => 5,\u003Cbr \u002F>\n    ‘image2’ => 6,\u003Cbr \u002F>\n    ‘image3’ => 12,\u003Cbr \u002F>\n    ‘image6’ => 20,\u003Cbr \u002F>\n    ‘image7’ => 15\u003Cbr \u002F>\n);\u003C\u002Fp>\n\u003Cp>\u002F\u002FEmpty pictures ar not returned\u003C\u002Fp>\n\u003Cp>?>\u003C\u002Fp>\n\u003Ch3>get_images_src()\u003C\u002Fh3>\n\u003Cp>This function have to be used into a template file, or any function.\u003Cbr \u002F>\nIt return an array of URIs and dimension for the linked attachments’s, by order.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>It take three agruments whose are :\u003C\u002Fp>\n\u003Col>\n\u003Cli>\u003Cstrong>size\u003C\u002Fstrong> (string) the size to return\u003C\u002Fli>\n\u003Cli>\u003Cstrong>include the thumbnail ?\u003C\u002Fstrong> (boolean) if true include the thumbnail in the returned datas\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>ID\u003C\u002Fstrong> (integer) for targeting images linked to a specific post\u003C\u002Fp>\n\u003Cp> array(\u003Cbr \u002F>\n        [0] => ‘http:\u002F\u002Furl_of_the_medium_pict.jpg’,\u003Cbr \u002F>\n        [1] => 340,\u003Cbr \u002F>\n        [2] => 200,\u003Cbr \u002F>\n        [3] => false \u002F\u002FI’ve no idea what is it…\u003Cbr \u002F>\n    ),\u003Cbr \u002F>\n    ‘image2’ => array(\u003Cbr \u002F>\n        [0] => ‘http:\u002F\u002Furl_of_the_medium_second_pict.jpg’,\u003Cbr \u002F>\n        [1] => 340,\u003Cbr \u002F>\n        [2] => 200,\u003Cbr \u002F>\n        [3] => false \u002F\u002FI’ve no idea what is it…\u003Cbr \u002F>\n    )\u003Cbr \u002F>\n);\u003C\u002Fp>\n\u003Cp>?>\u003C\u002Fp>\n\u003Ch3>get_multi_images_src()\u003C\u002Fh3>\n\u003Cp>Same as get_image_src(), but return two sizes for all the pictures.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>It take for agruments whose are :\u003C\u002Fp>\n\u003Col>\n\u003Cli>\u003Cstrong>size\u003C\u002Fstrong> (string) the size to return\u003C\u002Fli>\n\u003Cli>\u003Cstrong>size2\u003C\u002Fstrong> (string) another size to return\u003C\u002Fli>\n\u003Cli>\u003Cstrong>include the thumbnail ?\u003C\u002Fstrong> (boolean) if true include the thumbnail in the returned datas\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>ID\u003C\u002Fstrong> (integer) for targeting images linked to a specific post\u003C\u002Fp>\n\u003Cp> array(\u003Cbr \u002F>\n        [0] => array(\u003Cbr \u002F>\n            [0] => ‘http:\u002F\u002Furl_of_the_medium_pict.jpg’,\u003Cbr \u002F>\n            [1] => 340,\u003Cbr \u002F>\n            [2] => 200,\u003Cbr \u002F>\n            [3] => false \u002F\u002FI’ve no idea what is it…\u003Cbr \u002F>\n        ),\u003Cbr \u002F>\n        [1] => array(\u003Cbr \u002F>\n            [0] => ‘http:\u002F\u002Furl_of_the_full_pict.jpg’,\u003Cbr \u002F>\n            [1] => 1020,\u003Cbr \u002F>\n            [2] => 600,\u003Cbr \u002F>\n            [3] => false \u002F\u002FI’ve no idea what is it…\u003Cbr \u002F>\n        ),\u003Cbr \u002F>\n    ),\u003Cbr \u002F>\n    ‘image2’ => array(\u003Cbr \u002F>\n        [0] => array(\u003Cbr \u002F>\n            [0] => ‘http:\u002F\u002Furl_of_the_medium_second_pict.jpg’,\u003Cbr \u002F>\n            [1] => 340,\u003Cbr \u002F>\n            [2] => 200,\u003Cbr \u002F>\n            [3] => false \u002F\u002FI’ve no idea what is it…\u003Cbr \u002F>\n        ),\u003Cbr \u002F>\n        [1] => array(\u003Cbr \u002F>\n            [0] => ‘http:\u002F\u002Furl_of_the_second_full_pict.jpg’,\u003Cbr \u002F>\n            [1] => 1020,\u003Cbr \u002F>\n            [2] => 600,\u003Cbr \u002F>\n            [3] => false \u002F\u002FI’ve no idea what is it…\u003Cbr \u002F>\n        )\u003Cbr \u002F>\n    )\u003Cbr \u002F>\n);\u003Cbr \u002F>\n\u002F\u002FEmpty pictures ar not returned\u003C\u002Fp>\n\u003Cp>?>\u003C\u002Fli>\n\u003C\u002Fol>\n","Add a multi-image metabox to your posts, pages and custom post types",7000,20181,98,11,"2017-11-28T19:40:00.000Z","3.5.2","3.0","",[29,30,31,32,33],"images","metabox","multiple","multiple-post-thumbnail","pictures","http:\u002F\u002Fwabeo.fr","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmulti-image-metabox.zip",85,0,null,"2026-03-15T15:16:48.613Z",{"slug":41,"name":42,"version":43,"author":5,"author_profile":6,"description":44,"short_description":45,"active_installs":46,"downloaded":47,"rating":48,"num_ratings":49,"last_updated":50,"tested_up_to":51,"requires_at_least":26,"requires_php":27,"tags":52,"homepage":58,"download_link":59,"security_score":36,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"wp-deferred-javascripts","WP Deferred JavaScripts","2.0.5","\u003Cp>This plugin defer the loading of all JavaScripts added by the way of \u003Ccode>wp_enqueue_script()\u003C\u002Fcode>, using LABJS. The result is a significant optimization of loading time.\u003C\u002Fp>\n\u003Cp>It is compatible with all WordPress JavaScript functions (\u003Ccode>wp_localize_script()\u003C\u002Fcode>, js in header, in footer…) and works with all well coded plugins.\u003C\u002Fp>\n\u003Cp>If a plugin or a theme is not properly enqueuing scripts, your site may not work. Check this page: \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FFunction_Reference\u002Fwp_enqueue_script\" rel=\"nofollow ugc\">Function Reference\u002Fwp_enqueue_script on WordPress Codex\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>LABjs (Loading And Blocking JavaScript) is an open-source (MIT license) project supported by \u003Ca href=\"http:\u002F\u002Fgetify.com\u002F\" rel=\"nofollow ugc\">Getify Solutions\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>We performed a range of tests to determine the potential benefit of loading time. On \u003Ca href=\"http:\u002F\u002Fwabeo.fr\" rel=\"nofollow ugc\">wabeo\u003C\u002Fa> we executed \u003Ca href=\"http:\u002F\u002Fwebwait.com\u002F\" rel=\"nofollow ugc\">webwait\u003C\u002Fa> (150 calls by test). Result is this plugin could \u003Cstrong>improve your loading time by 25%\u003C\u002Fstrong>!!\u003Cbr \u002F>\nMore information in the \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fwp-deferred-javascripts\u002Fscreenshots\u002F\" rel=\"ugc\">Screenshots section\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>You can find \u003Ca href=\"http:\u002F\u002Fwww.seomix.fr\u002Fwp-deferred-javascript\u002F\" rel=\"nofollow ugc\">more information about WP Deferred JavaScripts\u003C\u002Fa> and \u003Ca href=\"http:\u002F\u002Fwabeo.fr\u002Fblog\u002Fwordpress-javascripts-asynchrones\u002F\" rel=\"nofollow ugc\">technical information about asynchronous scripts\u003C\u002Fa> on authors blogs.\u003C\u002Fp>\n","Defer the loading of all JavaScripts added with wp_enqueue_script(), using LABJS (an asynchronous javascript library).",900,159153,64,35,"2016-09-01T08:54:00.000Z","4.6.30",[53,54,55,56,57],"deferring","javascript","labjs","optimization","performance","http:\u002F\u002Fwww.screenfeed.fr","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-deferred-javascripts.2.0.5.zip",{"slug":61,"name":62,"version":63,"author":5,"author_profile":6,"description":64,"short_description":65,"active_installs":66,"downloaded":67,"rating":22,"num_ratings":68,"last_updated":69,"tested_up_to":70,"requires_at_least":71,"requires_php":72,"tags":73,"homepage":27,"download_link":79,"security_score":80,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"pastacode","Pastacode","3.0.1","\u003Cp>With Pastacode, you can easily add code into your posts with the awesome PrismJs coloration library.\u003Cbr \u002F>\nYou can insert source code into the post editor, wrinting it directly in the editor (using a gutenberg bloc or classic editor), from a file, or from webservices like GitHub, Gitlab, Gist, Pastebin, BitBucket or BitBucket snippets. Webservices responses are cached in order to avoid too many HTTP requests.\u003Cbr \u002F>\nIt also work in comments and bbPress topics and replies.\u003C\u002Fp>\n\u003Cp>Don’t worry about posts updates while upgrading codes!\u003C\u002Fp>\n\u003Cp>Pastacode allows to enhance your snippets using PrismJs plugins (highlightning lines, link functions…).\u003C\u002Fp>\n\u003Ch3>Third Party\u003C\u002Fh3>\n\u003Cp>Pastacode use some third party components\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FPrismJS\u002Fprism\u002Fgraphs\u002Fcontributors\" rel=\"nofollow ugc\">PrismJS – by Lea Verou, Golmote, James DiGioia, Michael Schmidt & other contributors\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002F@wordpress\u002Fcreate-block\" rel=\"nofollow ugc\">WordPress create-block\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fcodemirror\u002FCodeMirror\" rel=\"nofollow ugc\">CodeMirror 6\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fuiwjs.github.io\u002Freact-codemirror\u002F\" rel=\"nofollow ugc\">CodeMirror6 Component for React\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fmathiasbynens\u002Fhe\" rel=\"nofollow ugc\">He.js – by Mathias Bynens\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n","Use Pastacode to add code into your posts with the awesome PrismJs coloration library. So, past'a code!",500,24943,14,"2026-03-12T11:16:00.000Z","6.9.4","4.0","7.0",[74,75,76,77,78],"block","code","github","sourcecode","syntax","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpastacode.3.0.1.zip",100,{"slug":82,"name":83,"version":84,"author":5,"author_profile":6,"description":85,"short_description":86,"active_installs":80,"downloaded":87,"rating":88,"num_ratings":89,"last_updated":90,"tested_up_to":25,"requires_at_least":26,"requires_php":27,"tags":91,"homepage":96,"download_link":97,"security_score":36,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"nearby-map","Nearby Map by Wabeo","0.9.3","\u003Cp>Nearby Map allow you to easily insert a Map into your content. With it, you can show a main location and every interesting places around it.\u003C\u002Fp>\n\u003Cp>The map is dynamic. You can show to users the best way to travel from your main location to any other one.\u003Cbr \u002F>\nNearby Map also includes SEO optimisation with Schema.org markup.\u003C\u002Fp>\n\u003Ch4>Should I use Nearby Map ?\u003C\u002Fh4>\n\u003Cp>Here’s a few example to show you what you can do with Nearby Map\u003C\u002Fp>\n\u003Cul>\n\u003Cli>You’re planning an event, and you want to show every location involved in it (for example a wedding or a trip)\u003C\u002Fli>\n\u003Cli>You own a camping or an hotel, and you want to show to every customer what’s around it\u003C\u002Fli>\n\u003Cli>You are planning a seminar, and you want to give to everyone informations about restaurants and hotels for this event.\u003C\u002Fli>\n\u003Cli>And everything else involving a map of course…\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Col>\n\u003Cli>It creates a custom post type to handle every location, with an easy metabox to enter every information about them.\u003C\u002Fli>\n\u003Cli>It creates a nice map with custom markers and informations.\u003C\u002Fli>\n\u003Cli>It adds a full interactive list of each place with more information for users.\u003C\u002Fli>\n\u003Cli>Users have access to a navigation system betwen every location on the map.\u003C\u002Fli>\n\u003Cli>for each place, Nearby Map creates a new page with more detail and geographical information\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch4>How does Nearby Map works ?\u003C\u002Fh4>\n\u003Cp>Nearby Map does not use Google Map, beacause there is other good librairies :\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fleafletjs.com\u002F\" rel=\"nofollow ugc\">Leaflet\u003C\u002Fa>, in order to create the map and every Location (under \u003Ca href=\"http:\u002F\u002Ffr.wikipedia.org\u002Fwiki\u002FLicence_BSD\" rel=\"nofollow ugc\">BSD open-source licence\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fwww.openstreetmap.org\u002F\" rel=\"nofollow ugc\">OpenStreetMap\u003C\u002Fa>, to gather geograhpical information (under \u003Ca href=\"http:\u002F\u002Fopendatacommons.org\u002Flicenses\u002Fodbl\u002F\" rel=\"nofollow ugc\">Open Data Commons Open Database License\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fcloudmade.com\u002F\" rel=\"nofollow ugc\">CloudMade\u003C\u002Fa> to retrieve GPS coordinates, and in order to generate every route from one location to another \u003Ca href=\"http:\u002F\u002Fcreativecommons.org\u002Flicenses\u002Fby\u002F2.0\u002F\" rel=\"nofollow ugc\">Creative Commons Attribution 2.0 License\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>An \u003Ca href=\"http:\u002F\u002Ffontello.com\" rel=\"nofollow ugc\">icon font\u003C\u002Fa> for every custom Markers (\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fmapbox\u002Fmaki\u002Fblob\u002Fgh-pages\u002FLICENSE.txt\" rel=\"nofollow ugc\">maki, by MapBox (BSD)\u003C\u002Fa>,\u003Ca href=\"http:\u002F\u002Fcreativecommons.org\u002Flicenses\u002Fby-sa\u002F3.0\u002F\" rel=\"nofollow ugc\">Typicons, by Stephen Hutchings (CC BY-SA 3.0)\u003C\u002Fa> and \u003Ca href=\"http:\u002F\u002Fcreativecommons.org\u002Flicenses\u002Fby\u002F3.0\u002F\" rel=\"nofollow ugc\">Font Awesome, by Dave Gandy (CC BY 3.0)\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>For Pins Maps , i’ve drawn my inspiration from \u003Ca href=\"http:\u002F\u002Fmedialoot.com\u002Fitem\u002Ffree-vector-map-location-pins\u002F\" rel=\"nofollow ugc\">those icons\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Nearby Map is optimised for SEO\u003C\u002Fh4>\n\u003Cp>When a map is displayed, structured data from \u003Ca href=\"http:\u002F\u002Fschema.org\u002F\" rel=\"nofollow ugc\">schema.org\u003C\u002Fa> is included for each location.\u003C\u002Fp>\n\u003Ch4>An adaptable plugin\u003C\u002Fh4>\n\u003Cp>Nearby Map has been created with custom hooks and filter : you can override every data and action to improve or adapt the plugin to suit your needs. \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fnearby-map\u002Ffaq\u002F\" rel=\"ugc\">FAQ\u003C\u002Fa>\u003C\u002Fp>\n","Allow you to insert a map to show activities, places and services around a given geographical point.",5802,90,4,"2013-05-16T19:09:00.000Z",[92,93,94,95,82],"around","geolocalization","leaflet","map","http:\u002F\u002Fnearbymap.wabeo.fr","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fnearby-map.0.9.3.zip",{"slug":99,"name":100,"version":101,"author":5,"author_profile":6,"description":102,"short_description":103,"active_installs":104,"downloaded":105,"rating":88,"num_ratings":106,"last_updated":107,"tested_up_to":108,"requires_at_least":109,"requires_php":27,"tags":110,"homepage":34,"download_link":116,"security_score":36,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"mention-comments-authors","Mention comment's Authors by Wabeo","0.9.8","\u003Cp>“Mention comment’s authors” is a plugin that improves the WordPress comments fonctionality, adding a response system between authors.\u003Cbr \u002F>\nWhen adding a comment, your readers can directly mentioning the author of another comment, like facebook or twitter do,using the “@” symbol.\u003C\u002Fp>\n\u003Cp>This mention plugin add two features :\u003C\u002Fp>\n\u003Cul>\n\u003Cli>In the comments field, when an user entered the “@” symbol, it allows, through an autocompletion system, to quote (or poke) a preceding commentator.\u003C\u002Fli>\n\u003Cli>Once comments validated, the mentioned names take the appearance of buttons. When the user clicks on it, window scrolls to the preceding comment from the person named. A class is added to it, for temporarily customize it in CSS.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>This WordPress plugin is based on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Ftactivos\u002Fjquery-sew\" rel=\"nofollow ugc\">“jquery-sew” jQuery plugin\u003C\u002Fa>, by \u003Ca href=\"https:\u002F\u002Fmural.ly\u002F\" rel=\"nofollow ugc\">mural.ly\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>You can find more information on this post : \u003Ca href=\"http:\u002F\u002Fwabeo.fr\u002Fblog\u002Fsysteme-reponse-commentaires\u002F\" rel=\"nofollow ugc\">wabeo : Un système de réponse dans les commentaires\u003C\u002Fa>\u003C\u002Fp>\n","When adding a comment, your users can directly mentioning the author of another comment, like facebook or twitter do,using the \"@\" symbol.",80,8753,12,"2016-05-30T14:57:00.000Z","4.5.33","3.5",[111,112,113,114,115],"comments","facebook","mention","poke","twitter","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmention-comments-authors.zip",{"slug":118,"name":119,"version":120,"author":5,"author_profile":6,"description":121,"short_description":122,"active_installs":123,"downloaded":124,"rating":80,"num_ratings":125,"last_updated":126,"tested_up_to":127,"requires_at_least":128,"requires_php":27,"tags":129,"homepage":27,"download_link":135,"security_score":36,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"auto-generate-submenus","Auto Generate Submenus","1.1","\u003Cp>It add fields to nav menu items in the menu editor (on admin side), allowing to automatically generate submenus on front-end.\u003C\u002Fp>\n\u003Cp>You can, for example, ask that the last 5 items of a category appear in the sub-menu. You can also request to display all sub-terms of a taxonomy term. Or you can also ask to list all the contents associated with a CPT archive page…\u003C\u002Fp>\n","With this plugin, you can add an automatically generated submenu for each menu item.",60,2807,1,"2017-04-24T07:59:00.000Z","4.7.32","4.6",[130,131,132,133,134],"auto","menu","menus","submenu","wp-nav-menu","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fauto-generate-submenus.1.1.zip",{"slug":137,"name":138,"version":139,"author":5,"author_profile":6,"description":140,"short_description":141,"active_installs":142,"downloaded":143,"rating":37,"num_ratings":37,"last_updated":144,"tested_up_to":51,"requires_at_least":145,"requires_php":27,"tags":146,"homepage":150,"download_link":151,"security_score":36,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"crayon-syntax-highlighter-to-pastacode","Crayon Syntax Highlighter to Pastacode","1.0","\u003Cp>The only use of this plugin is to convert \u003Ca href=\"https:\u002F\u002Ffr.wordpress.org\u002Fplugins\u002Fcrayon-syntax-highlighter\u002F\" rel=\"nofollow ugc\">Crayon Syntax Highlighter\u003C\u002Fa>‘s tags into \u003Ca href=\"https:\u002F\u002Ffr.wordpress.org\u002Fplugins\u002Fpastacode\u002F\" rel=\"nofollow ugc\">Pastacode\u003C\u002Fa> shortcodes.\u003C\u002Fp>\n","The only use of this plugin is to convert Crayon Syntax Highlighter's tags into Pastacode shortcodes.",40,2920,"2016-08-31T04:54:00.000Z","3.1",[147,148,149,61,78],"crayon","highlighter","migration","http:\u002F\u002Fpastacode.wabeo.fr","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcrayon-syntax-highlighter-to-pastacode.1.0.zip",{"slug":153,"name":154,"version":155,"author":5,"author_profile":6,"description":156,"short_description":157,"active_installs":37,"downloaded":158,"rating":37,"num_ratings":37,"last_updated":27,"tested_up_to":159,"requires_at_least":63,"requires_php":160,"tags":161,"homepage":27,"download_link":167,"security_score":80,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":168},"invoices-camptix","Camptix Invoices","1.0.1","\u003Cp>Allow CampTix administrators to send invoices automatically when an attendee buys a ticket.\u003C\u002Fp>\n","Allow CampTix administrators to send invoices automatically when an attendee buys a ticket.",2223,"5.0.25","5.4",[162,163,164,165,166],"camptix","event","invoice","organizer","tickets","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Finvoices-camptix.1.0.1.zip","2026-03-15T10:48:56.248Z"]