[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fU5GaqxnaHMwXl3s0YPIc8tkbV_jhdSzhoOGylbrGA84":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},"bueltge","Frank Bueltge","https:\u002F\u002Fprofiles.wordpress.org\u002Fbueltge\u002F",5,101270,89,30,86,"2026-04-04T06:02:08.786Z",[14,40,62,79,95],{"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},"addquicktag","AddQuicktag","2.6.1","\u003Cp>This plugin makes it easy to add Quicktags to the html – and visual-editor. It is possible to export your Quicktags as a JSON – file that can be imported in other installations of the plugin.\u003C\u002Fp>\n\u003Cp>WP-AddQuicktag for WordPress is originally created by \u003Ca href=\"http:\u002F\u002Froel.meurders.nl\u002F\" title=\"Roel Meurders\" rel=\"nofollow ugc\">Roel Meurders\u003C\u002Fa>. The versions in the Repo of AddQuicktag are newer versions, this is a complete rewrite of version 2.0.0 with more functionality.\u003C\u002Fp>\n\u003Cp>The plugin can add configurable custom quicktags to the editor of every post type, including custom post types from other sources. You may choose a post type for which a quicktag shall show up in the editor.\u003Cbr \u002F>\nIf this should not work perfectly well for you, you may also use the hooks inside the plugin. See the examples and hint inside the tab “\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Faddquicktag\u002Fother_notes\u002F\" rel=\"ugc\">Other Notes\u003C\u002Fa>“.\u003C\u002Fp>\n\u003Ch4>Bugs, technical hints or contribute\u003C\u002Fh4>\n\u003Cp>Please give me feedback, contribute and file technical bugs on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fbueltge\u002Faddquicktag\" rel=\"nofollow ugc\">GitHub Repo\u003C\u002Fa>. The Wiki on this page has also several hints for the plugin.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Crafted by \u003Ca href=\"https:\u002F\u002Finpsyde.com\" rel=\"nofollow ugc\">Inpsyde\u003C\u002Fa> · Engineering the web since 2006.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch4>Hook for custom post types\u003C\u002Fh4>\n\u003Cp>The plugin adds the quicktag by default to post types\u002FID \u003Ccode>post\u003C\u002Fcode>, \u003Ccode>page\u003C\u002Fcode> and \u003Ccode>comment\u003C\u002Fcode>. To use the plugin for other post types also you may use a filter; see the following example or an example plugin in the \u003Ca href=\"https:\u002F\u002Fgist.github.com\u002F1595155\" rel=\"nofollow ugc\">Gist 1595155\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F\u002F add custom function to filter hook 'addquicktag_post_types'\nadd_filter( 'addquicktag_post_types', 'my_addquicktag_post_types' );\n\u002F**\n * Return array $post_types with custom post types\n *\n * @param   $post_type Array\n * @return  $post_type Array\n *\u002F\nfunction my_addquicktag_post_types( $post_types ) {\n\n    $post_types[] = 'edit-comments';\n    return $post_types;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Hook for custom pages\u003C\u002Fh4>\n\u003Cp>It is possible also to filter the pages inside the backend. By default the scripts include the pages \u003Ccode>post.php\u003C\u002Fcode>, \u003Ccode>comment.php\u003C\u002Fcode>. The following example changes this for an another page.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter( 'addquicktag_pages', 'my_addquicktag_pages' );\n\u002F**\n * Return array $page with custom page strings\n *\n * @param   $page Array\n * @return  $page Array\n *\u002F\nfunction my_addquicktag_pages( $page ) {\n\n    $page[] = 'edit-comments.php';\n    return $page;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>See this Gist as an example for how to add the Quicktags to the editor of comments: \u003Ca href=\"https:\u002F\u002Fgist.github.com\u002F3076698\" rel=\"nofollow ugc\">Gist: 3076698\u003C\u002Fa>.\u003Cbr \u002F>\nIf you want the Quicktags of this plugin to work on the Quickedit of comments as well, remove the \u003Ccode>.example\u003C\u002Fcode>-part of \u003Ccode>addquicktag_quickedit_comment.php.example\u003C\u002Fcode> filename. The file is a stand alone helper plugin for Add Quicktag. You’ll need to activate this file (plugin) separately in ‘Manage Plugins’.\u003C\u002Fp>\n\u003Ch4>Hook for custom buttons\u003C\u002Fh4>\n\u003Cp>It is possible to add custom buttons to the editor, if the plugin is active.\u003C\u002Fp>\n\u003Cp>The following example adds buttons. The params inside the array are the same as in the settings of the plugin.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>if ( class_exists( 'Add_Quicktag' ) ) :\nadd_filter( 'addquicktag_buttons', 'my_addquicktag_buttons' );\n\nfunction my_addquicktag_buttons( $buttons ) {\n\n    $buttons[] = array(\n        'text'          => 'Permalink',\n        'title'         => '',\n        'start'         => '[permalink]',\n        'end'           => '[\u002Fpermalink]',\n        'access'        => '',\n        'order'         => 1,\n        'visual'        => 1,\n        'post'          => 0,\n        'page'          => 1,\n        'comment'       => 0,\n        'edit-comments' => 0\n    );\n    $buttons[] = array(\n        'text'          => 'Button',\n        'title'         => '',\n        'start'         => '\u003Cspan class=\"border blue\">',\n        'end'           => '\u003C\u002Fspan>',\n        'access'        => '',\n        'order'         => 2,\n        'visual'        => 1,\n        'post'          => 0,\n        'page'          => 1,\n        'comment'       => 0,\n        'edit-comments' => 0\n    );\n    return $buttons;\n}\nendif;\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>License\u003C\u002Fh4>\n\u003Cp>Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you may consider to thank me and leave a \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Faddquicktag\u002Freviews\u002F#new-post\" rel=\"ugc\">positive review\u003C\u002Fa> for the time I’ve spent writing and supporting this plugin. And I really don’t want to know how many hours of my life this plugin has already eaten 😉\u003C\u002Fp>\n","This plugin makes it easy to add Quicktags to the html - and visual-editor.",100000,1385273,94,44,"2021-05-20T13:37:00.000Z","5.7.15","4.0","",[29,30,31,32,33],"add-buttons","button","editor","quicktag","tinymce","http:\u002F\u002Fbueltge.de\u002Fwp-addquicktags-de-plugin\u002F120\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Faddquicktag.2.6.1.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":52,"requires_php":53,"tags":54,"homepage":60,"download_link":61,"security_score":48,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"de_de","de_DE","1.0.3","\u003Cp>The solution is usually interested in installations that set the language to de_DE, German. This Plugin, also usable as a drop-in, replaces non-ASCII strings, especially German umlauts, with an alternate in permalinks and uploaded files. Also, add the German language key to the feed.\u003C\u002Fp>\n\u003Cp>\u003Cem>The following hints are only available in the German language.\u003C\u002Fem>\u003C\u002Fp>\n\u003Ch4>Beschreibung\u003C\u002Fh4>\n\u003Cp>Diese Sprach-\u003Cem>DropIn\u003C\u002Fem> ersetzt diverse Zeichen durch entprechende Strings in den Permalinks und den Namen hochgeladener Dateien. Im weiteren wird der Sprachschlüssel der Feeds gesetzt.\u003C\u002Fp>\n\u003Ch4>Lösungen\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Ersatz von Umlauten und Sonderzeichen um saubere Permalinks zu erzeugen\n\u003Cul>\n\u003Cli>Beispiel: \u003Cem>Das häßliche Entlein kostet 1 €\u003C\u002Fem> wird im Permalink zu \u003Cem>das haessliches-entlein-kostet-1-eur\u003C\u002Fem>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>Dateinamen ersetzen: Sonderzeichen, Leerzeichen, Umlaute\n\u003Cul>\n\u003Cli>Beispiel: \u003Cem>Häßliches Entlein.png\u003C\u002Fem> wird zu \u003Cem>haessliches-entlein.png\u003C\u002Fem>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>Setzt den Sprachwert des Feed auf \u003Ccode>de\u003C\u002Fcode> (dafür hat WordPress keine sichtbare Option)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Hinweise\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Wenn das Plugin \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Ftoscho\u002FGermanix-WordPress-Plugin\" rel=\"nofollow ugc\">Germanix\u003C\u002Fa> aktiv ist, dann wirkt dieses Plugin\u002F Dropin \u003Ccode>de_DE.php\u003C\u002Fcode> nicht.\u003C\u002Fli>\n\u003Cli>Support, Fehler, Ergänzen bitte via \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fbueltge\u002Fde-DE\u002F\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Support und Unterstützung\u003C\u002Fh4>\n\u003Cp>Das Plugin liegt auf \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fbueltge\u002Fde-DE\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa> und jede Hilfe ist gern gesehen.\u003C\u002Fp>\n","Replace non-ASCII characters for installs that set the German language as a primary language.",1000,16436,100,2,"2026-01-29T12:29:00.000Z","6.9.4","3.5","5.6",[55,56,57,58,59],"ascii","german","permalink","umlaut","upload","https:\u002F\u002Fgithub.com\u002Fbueltge\u002Fde-DE","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fde_de.1.0.3.zip",{"slug":63,"name":64,"version":65,"author":5,"author_profile":6,"description":66,"short_description":67,"active_installs":48,"downloaded":68,"rating":69,"num_ratings":70,"last_updated":71,"tested_up_to":72,"requires_at_least":73,"requires_php":27,"tags":74,"homepage":77,"download_link":78,"security_score":36,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"archive","Archive","1.0.2","\u003Cp>Archive your post types, also possible via cron; but only active via var inside the php-file.\u003Cbr \u002F>\nUse the shortcode [archive] to list all posts from Archive with status publish to a page or post.\u003Cbr \u002F>\nThe shortcode can use different params and use the follow defaults.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>'count'         => -1, \u002F\u002F count or -1 for all posts\n'category'      => '', \u002F\u002F Show posts associated with certain categories.\n'tag'           => '', \u002F\u002F Show posts associated with certain tags.\n'post_status'   => 'publish', \u002F\u002F status or all for all posts\n'echo'          => 'true', \u002F\u002F echo or give an array for use external\n'return_markup' => 'ul', \u002F\u002F markup before echo title, content\n'title_markup'  => 'li', \u002F\u002F markup before item\n'content'       => 'false', \u002F\u002F view also content?\n'debug'         => 'false' \u002F\u002F debug mor vor view an array\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>An example for use shortcode with params: \u003Ccode>[archive count=\"10\" content=\"true\"]\u003C\u002Fcode>\u003C\u002Fp>\n\u003Cp>Also you can change the parameters to create the custom post type of the Archiv via the filter hook \u003Ccode>archive_post_type_arguments\u003C\u002Fcode>.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Crafted by \u003Ca href=\"http:\u002F\u002Finpsyde.com\" rel=\"nofollow ugc\">Inpsyde\u003C\u002Fa> &middot; Engineering the web since 2006.\u003C\u002Fstrong>\u003C\u002Fp>\n","Archive your post types, also possible with cron and list via shortcode on frontend.",16420,46,3,"2020-05-04T13:16:00.000Z","4.7.32","3.0",[63,75,76],"custom-post-type","post","https:\u002F\u002Fgithub.com\u002Fbueltge\u002FArchive","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Farchive.zip",{"slug":80,"name":81,"version":82,"author":5,"author_profile":6,"description":83,"short_description":84,"active_installs":48,"downloaded":85,"rating":22,"num_ratings":70,"last_updated":86,"tested_up_to":87,"requires_at_least":88,"requires_php":27,"tags":89,"homepage":93,"download_link":94,"security_score":36,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"text-control-2","Text Control","2.3.1","\u003Cp>Text Control will allow you to choose from a variety of formatting syntaxes and encoding options. You can choose between Markdown, Textile 1, Textile 2, nl2br, WPautop, and “No Formatting” for formatting along with the choice of SmartyPants, WPTexturize or “No Encoding” for character encodings.\u003C\u002Fp>\n\u003Ch4>Localizations\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Thanks to \u003Ca href=\"http:\u002F\u002Fbueltge.de\u002F\" title=\"Frank B&uuml;ltge\" rel=\"nofollow ugc\">Frank B&uuml;ltge\u003C\u002Fa> for german language file\u003C\u002Fli>\n\u003Cli>Thanks to \u003Ca href=\"http:\u002F\u002Fwww.inmotionhosting.com\u002F\" rel=\"nofollow ugc\">Brian Flores\u003C\u002Fa> for spanish translation\u003C\u002Fli>\n\u003Cli>Lithuanian translation files by \u003Ca href=\"http:\u002F\u002Fwww.host1plus.com\" rel=\"nofollow ugc\">Vincent G\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Not really a bug so much, but an issue: Textile 2 is freaking huge (145k > 4000 lines of code) so it can be quite a burden on your server. If you can get away with \u003Cem>not\u003C\u002Fem> using it, I highly reccomend you do so.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Additionally, in Textile 2 there is a feature that would grab an image via PHP and get it’s height and width for placing in the IMG tags. This has been disabled It literally took a post from 1 second to display straight to 6 seconds — completely unacceptable.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Acknowledgements\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Romanian language files, thanks to \u003Ca href=\"http:\u002F\u002Fwebhostinggeeks.com\u002F\" rel=\"nofollow ugc\">Alexander Ovsov\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Native Serbo-Croatian language files, thanks to \u003Ca href=\"http:\u002F\u002Fwww.webhostinghub.com\u002F\" rel=\"nofollow ugc\">Borisa Djuraskovic\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Licence\u003C\u002Fh4>\n\u003Cp>Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you can thank me and leave a \u003Ca href=\"http:\u002F\u002Fbueltge.de\u002Fwunschliste\u002F\" title=\"Wishliste and Donate\" rel=\"nofollow ugc\">small donation\u003C\u002Fa> for the time I’ve spent writing and supporting this plugin. And I really don’t want to know how many hours of my life this plugin has already eaten 😉\u003C\u002Fp>\n\u003Ch4>Translations\u003C\u002Fh4>\n\u003Cp>The plugin comes with various translations, please refer to the \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FInstalling_WordPress_in_Your_Language\" title=\"Installing WordPress in Your Language\" rel=\"nofollow ugc\">WordPress Codex\u003C\u002Fa> for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the .pot file which contains all defintions and may be used with a \u003Ca href=\"http:\u002F\u002Fwww.gnu.org\u002Fsoftware\u002Fgettext\u002F\" rel=\"nofollow ugc\">gettext\u003C\u002Fa> editor like \u003Ca href=\"http:\u002F\u002Fwww.poedit.net\u002F\" rel=\"nofollow ugc\">Poedit\u003C\u002Fa> (Windows) or plugin for WordPress \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fcodestyling-localization\u002F\" rel=\"ugc\">Localization\u003C\u002Fa>.\u003C\u002Fp>\n","Text Control will allow you to choose from a variety of formatting syntaxes and encoding options. You can choose between Markdown, Textile 1, Textile  &hellip;",14546,"2013-10-31T17:56:00.000Z","3.7.41","1.5",[90,91,92,76],"encoding","format","formatting","http:\u002F\u002Fdev.wp-plugins.org\u002Fwiki\u002FTextControl","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ftext-control-2.2.3.1.zip",{"slug":96,"name":97,"version":98,"author":5,"author_profile":6,"description":99,"short_description":100,"active_installs":101,"downloaded":102,"rating":103,"num_ratings":104,"last_updated":105,"tested_up_to":106,"requires_at_least":107,"requires_php":108,"tags":109,"homepage":114,"download_link":115,"security_score":116,"vuln_count":37,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"multisite-enhancements","Multisite Enhancements","1.7.1","\u003Cp>When you work quite a bit with WordPress Multisites, sometimes you need more information or menu items. This plugin enhances the network area for super admins with useful functions.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Adds Blog and User ID in network view \u003Ca href=\"http:\u002F\u002Fwpengineer.com\u002F2188\u002Fview-blog-id-in-wordpress-multisite\u002F\" rel=\"nofollow ugc\">more\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Enables an ‘Add New’ link under the Plugins menu for Network admins\u003C\u002Fli>\n\u003Cli>Adds several useful items to the multisite ‘Network Admin’ admin bar\u003C\u002Fli>\n\u003Cli>On the network plugins page, show which site has this plugin active\u003C\u002Fli>\n\u003Cli>On the network theme page, show which blog has the theme active and which is a Child theme\u003C\u002Fli>\n\u003Cli>Change Admin footer text for Administrators to view currently used RAM, SQL, RAM versions fast\u003C\u002Fli>\n\u003Cli>Adds Favicon from the theme folder to the admin area to easily identify the blog. Use the \u003Ccode>favicon.ico\u003C\u002Fcode> file in the theme folder of the active theme in each blog\u003C\u002Fli>\n\u003Cli>Adds Favicon to each blog on the Admin Bar Item ‘My Sites’. If you like a custom path for each favicon, please see the \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fbueltge\u002FWordPress-Multisite-Enhancements\u002Fwiki\u002FFilter-Hook-for-Favicon-File-Path\" rel=\"nofollow ugc\">documentation\u003C\u002Fa> for this feature.\u003C\u002Fli>\n\u003Cli>Removes also the ‘W’ logo and his sub-links in the admin bar\u003C\u002Fli>\n\u003Cli>Adds the status to each site in the admin bar to identify fastly if the site has a \u003Ccode>noindex\u003C\u002Fcode> status and to see the external url.\u003C\u002Fli>\n\u003Cli>Handy SSL identifier for each site on the network site view page.\u003C\u002Fli>\n\u003Cli>See the last login of users.\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Add functions to be used in your install\u003C\u002Fp>\n\u003Cul>\n\u003Cli>The function \u003Ccode>get_blog_list()\u003C\u002Fcode> is currently deprecated in the WP Core, but currently usable. The plugin checks this and gets an alternative in \u003Ca href=\".\u002Finc\u002Fautoload\u002Fcore.php\" rel=\"nofollow ugc\">\u003Ccode>inc\u002Fautoload\u002Fcore.php\u003C\u002Fcode>\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>If you will develop the alternative to this function from my source, then use the method \u003Ccode>get_blog_list()\u003C\u002Fcode> in class \u003Ccode>Multisite_Core\u003C\u002Fcode>. My source also uses caching with the Transient API. More about the function in  \u003Ca href=\".\u002Finc\u002Fautoload\u002Fclass-core.php\" rel=\"nofollow ugc\">\u003Ccode>inc\u002Fautoload\u002Fclass-core.php\u003C\u002Fcode>\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>If you use WordPress version 3.7 and higher, then check the function \u003Ccode>wp_get_sites()\u003C\u002Fcode>, the new alternative function inside the core to get all sides inside the network. The function accepts a array with arguments, see the \u003Ca href=\"http:\u002F\u002Fwpseek.com\u002Fwp_get_sites\u002F\" rel=\"nofollow ugc\">description\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>But if you use WordPress 4.6 and higher then that new alternative 😉 – \u003Ccode>get_sites()\u003C\u002Fcode> – is the current function to get all sites in the network. The helper method of this plugin \u003Ccode>Multisite_Core::get_blog_list()\u003C\u002Fcode> or the function \u003Ccode>get_blog_list()\u003C\u002Fcode> have all checks included.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Filter the theme list to find your target quickly. This works on a single theme page and also on a network theme page.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Crafted by Inpsyde\u003C\u002Fh4>\n\u003Cp>The team at \u003Ca href=\"http:\u002F\u002Finpsyde.com\u002F\" rel=\"nofollow ugc\">Inpsyde\u003C\u002Fa> is engineering the web and WordPress since 2006.\u003C\u002Fp>\n\u003Ch4>Donation?\u003C\u002Fh4>\n\u003Cp>If you want to donate – we prefer a \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fview\u002Fplugin-reviews\u002Fmultisite-enhancements?rate=5#postform\" rel=\"ugc\">positive review\u003C\u002Fa>, nothing more.\u003Cbr \u002F>\n\u003Cstrong>Crafted by \u003Ca href=\"https:\u002F\u002Finpsyde.com\" rel=\"nofollow ugc\">Inpsyde\u003C\u002Fa> · The team is engineering the Web since 2006.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch4>Hints, knowledge\u003C\u002Fh4>\n\u003Cp>See also for helpful hints on the \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fbueltge\u002Fwordpress-multisite-enhancements\u002Fwiki\" rel=\"nofollow ugc\">wiki page\u003C\u002Fa>.\u003Cbr \u002F>\nEspecially the following topics are interest:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fbueltge\u002FWordPress-Multisite-Enhancements\u002Fwiki\u002FFilter-Hook-for-Favicon-File-Path\" rel=\"nofollow ugc\">Filter Hook for Favicon File Path – Define your custom Favicon path\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fbueltge\u002Fwordpress-multisite-enhancements\u002Fwiki\u002FLarge-Network-Problem\" rel=\"nofollow ugc\">Large Network Problem\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Bugs, technical hints or contributions\u003C\u002Fh4>\n\u003Cp>Please give me feedback, contribute, and file technical bugs on this\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fbueltge\u002FWordPress-Multisite-Enhancements\u002Fissues\" rel=\"nofollow ugc\">GitHub Repo\u003C\u002Fa>, use Issues.\u003C\u002Fp>\n\u003Ch4>License\u003C\u002Fh4>\n\u003Cp>Good news, this plugin is free for everyone! Since it’s released under the GPL,\u003Cbr \u002F>\nyou can use it free of charge on your personal or commercial blog. But if you enjoy this plugin,\u003Cbr \u002F>\nyou can thank me and leave a\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fwww.paypal.com\u002Fcgi-bin\u002Fwebscr?cmd=_s-xclick&hosted_button_id=6069955\" title=\"Paypal Donate link\" rel=\"nofollow ugc\">small donation\u003C\u002Fa>\u003Cbr \u002F>\nfor the time I’ve spent writing and supporting this plugin.\u003Cbr \u002F>\nAnd I really don’t want to know how many hours of my life this plugin has already eaten 😉\u003C\u002Fp>\n\u003Ch4>Contact & Feedback\u003C\u002Fh4>\n\u003Cp>The plugin is designed and developed by me \u003Ca href=\"http:\u002F\u002Fbueltge.de\" rel=\"nofollow ugc\">Frank Bültge\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fplus.google.com\u002F+FrankBültge\u002Fabout?rel=author\" rel=\"nofollow ugc\">G+ Page\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Please let me know if you like the plugin or hate it.\u003Cbr \u002F>\nPlease fork it, and add an issue for ideas and bugs on the \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fbueltge\u002FWordPress-Multisite-Enhancements\" rel=\"nofollow ugc\">Github Repository\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch4>Disclaimer\u003C\u002Fh4>\n\u003Cp>I’m German, and my English might be gruesome here and there.\u003Cbr \u002F>\nSo please be patient with me and let me know if there are typos or grammatical parts. Thanks\u003C\u002Fp>\n","Enhance Multisite for Network Admins with different topics",70,174060,90,48,"2024-07-18T15:27:00.000Z","6.6.5","4.6","7.2",[110,111,112,113],"admin-bar","administration","multisite","network","https:\u002F\u002Fgithub.com\u002Fbueltge\u002FWordPress-Multisite-Enhancements","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmultisite-enhancements.1.7.1.zip",92]