[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$foSNCIl6D9qy3EoX1LHFTzagAqRf1iuYqDvMLQdA6m24":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},"mechter","Markus Echterhoff","https:\u002F\u002Fprofiles.wordpress.org\u002Fmechter\u002F",5,140,88,30,86,"2026-04-04T19:04:09.507Z",[14,39,54,68,85],{"slug":15,"name":16,"version":17,"author":5,"author_profile":6,"description":18,"short_description":19,"active_installs":20,"downloaded":21,"rating":20,"num_ratings":22,"last_updated":23,"tested_up_to":24,"requires_at_least":25,"requires_php":26,"tags":27,"homepage":33,"download_link":34,"security_score":35,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"asyncronous-bbpress-subscriptions","AsynCRONous bbPress Subscriptions","3.7","\u003Cp>Per default, bbPress is sending subscription notification emails as one email with a bunch of BCCs. There are various reasons why it would make more sense to send individual emails. This plugin does that, quietly in the background via WP cron, without slowing down page load times. Also increases notification performance and reduces database load on large sites.\u003C\u002Fp>\n\u003Cp>Translations by @mauriciogarofalo and @mechter\u003C\u002Fp>\n\u003Ch4>Defaults\u003C\u002Fh4>\n\u003Cp>If you don’t customize this plugin, this is what you’ll get:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Sends mails from \u003Ccode>\"MyBlog \u003Cadmin@MyBlog.foo>\"\u003C\u002Fcode> (with your Blog’s name and admin email)\u003C\u002Fli>\n\u003Cli>Sends mail to \u003Ccode>\"Markus \u003Cmarkus@example.com>\"\u003C\u002Fcode> (with the name being the user’s display name on the forums, not their username)\u003C\u002Fli>\n\u003Cli>Subject and Message have more user friendly defaults, use the available filters (see below) to make them your own.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Customization\u003C\u002Fh4>\n\u003Cp>You can install and activate this plugin and it just works, but you have full control over the details if you want to. Below are some filters and code snippets that help you do what you want. If you’re new to working directly with code, please see the example at the bottom of this page.\u003C\u002Fp>\n\u003Ch4>Available filters\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>bbp_subscription_email_from( $from ) \u002F\u002F $from can be a string or array('name'=>string, 'address'=>string)\nbbp_subscription_email_recipients( $recipients ) \u002F\u002F $recipients is array of array('name'=>string, 'address'=>string)\nbbp_subscription_email_headers( $headers )\nbbp_forum_subscription_email_subject( $subject, $forum_id, $topic_id )\nbbp_forum_subscription_email_message( $message, $forum_id, $topic_id )\nbbp_topic_subscription_email_subject( $subject, $forum_id, $topic_id, $reply_id )\nbbp_topic_subscription_email_message( $message, $forum_id, $topic_id, $reply_id )\n\nbbp_bounce_address( $bounce_address )\n\nbbp_subscription_disable_async( false )\nbbp_forum_subscription_disable_async( false )\nbbp_topic_subscription_disable_async( false )\nbbp_forum_subscription_notify_author( false )\nbbp_topic_subscription_notify_author( false )\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Helpful Snippets\u003C\u002Fh4>\n\u003Cp>Here are some pointers to get the data you might want in your notifications:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$blog_name = get_bloginfo( 'name' );\n\n$forum_title = bbp_get_forum_title( $forum_id );\n\n$topic_author_user_id = bbp_get_topic_author_id( $topic_id );\n$topic_author_display_name = bbp_get_topic_author_display_name( $topic_id );\n$topic_title = wp_specialchars_decode( strip_tags( bbp_get_topic_title( $topic_id ) ), ENT_QUOTES );\n$topic_content = wp_specialchars_decode( strip_tags( bbp_get_topic_content( $topic_id ) ), ENT_QUOTES );\n$topic_url = get_permalink( $topic_id );\n\n$reply_author_user_id = bbp_get_reply_author_id( $reply_id );\n$reply_author_display_name = bbp_get_topic_author_display_name( $reply_id );\n$reply_content = strip_tags( bbp_get_reply_content( $reply_id ) );\n$reply_url = bbp_get_reply_url( $reply_id ); \u002F\u002F note that it's not get_permalink()\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Example\u003C\u002Fh4>\n\u003Cp>To have a nice subject line for new topic notifications, add this to your theme’s \u003Ccode>functions.php\u003C\u002Fcode>. If your theme does not have this file, you can simply create it and it will be loaded automatically. Note how the example is basically just one of the filters above, mixed with some of the snippets and a return statement. It’s that simple.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter( 'bbp_forum_subscription_email_subject', function( $subject, $forum_id, $topic_id ) {\n    $blog_name = get_bloginfo( 'name' );\n    $topic_author_display_name = bbp_get_topic_author_display_name( $topic_id );\n    $topic_title = wp_specialchars_decode( strip_tags( bbp_get_topic_title( $topic_id ) ), ENT_QUOTES );\n    return \"[$blog_name] $topic_author_display_name created a new topic: $topic_title\";\n}, 10, 3); \u002F\u002F first is priority (10 is default and just fine), second is number of arguments your filter expects\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Email notifications done right. No BCC lists, no added page load time, better performance.",100,6594,8,"2020-07-06T18:17:00.000Z","5.4.19","3.6","",[28,29,30,31,32],"bbpress","cron","email","notifications","subscription","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fasyncronous-bbpress-subscriptions\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fasyncronous-bbpress-subscriptions.3.7.zip",85,0,null,"2026-03-15T15:16:48.613Z",{"slug":40,"name":41,"version":42,"author":5,"author_profile":6,"description":43,"short_description":44,"active_installs":45,"downloaded":46,"rating":20,"num_ratings":47,"last_updated":26,"tested_up_to":48,"requires_at_least":25,"requires_php":26,"tags":49,"homepage":51,"download_link":52,"security_score":20,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":53},"bbp-markdown","bbP Markdown","1.5","\u003Cp>This is the Markdown plugin for bbPress that I needed, but could not find. It replaces the standard editor with a responsive Markdown form that includes a preview and formatting help. The Markdown is parsed using PHP Markdown(Extra) and saved as a regular HTML bbPress post. The Markdown is saved separately for later editing. The plugin can be activated and deactivated without affecting your bbPress data, it uninstalls cleanly (deleting any saved Markdown code) and is multisite compatible.\u003C\u002Fp>\n\u003Cp>Tip: You can give the plugin a slight performance boost if your forum is Markdown only or you don’t care that some non-Markdown posts are displayed slightly different than before (e.g. not turning newlines into paragraphs or no longer making URLs automatically clickable), by adding the following to your theme’s functions.php: \u003Ccode>add_filter( 'bbpmd_remove_output_filters_for_all_posts', '__return_true' );\u003C\u002Fcode>\u003C\u002Fp>\n","Elegant Markdown support for your bbPress forums.",10,1877,3,"5.0.25",[28,50],"markdown","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fbbp-markdown\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fbbp-markdown.1.5.zip","2026-03-15T14:44:11.924Z",{"slug":55,"name":56,"version":57,"author":5,"author_profile":6,"description":58,"short_description":59,"active_installs":45,"downloaded":60,"rating":36,"num_ratings":36,"last_updated":61,"tested_up_to":62,"requires_at_least":63,"requires_php":26,"tags":64,"homepage":66,"download_link":67,"security_score":35,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"bogoxlib","BogoXLib","1.1","\u003Cp>This plugin provides a library of extended functionality for Bogo. My Bogo based translation plugins depend on it.\u003C\u002Fp>\n\u003Cp>If you are developing a plugin and wish to make it compatible to Bogo, you may find some convenient API calls in here.\u003C\u002Fp>\n\u003Cp>It also contains an email localization implementation that can localize emails depending on the user who receives them.\u003C\u002Fp>\n\u003Cp>For example usages see \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fbogo-bbpress\u002F\" rel=\"ugc\">Bogo BBPress\u003C\u002Fa> or \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fbogo-buddypress\u002F\" rel=\"ugc\">Bogo BuddyPress\u003C\u002Fa>.\u003C\u002Fp>\n","Bogo extension library to create multilingual plugins or plugins that make other plugins multilingual.",1740,"2015-04-02T09:36:00.000Z","4.1.42","4.0",[65],"bogo","http:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fbogoxlib\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fbogoxlib.1.1.zip",{"slug":69,"name":70,"version":71,"author":5,"author_profile":6,"description":72,"short_description":73,"active_installs":45,"downloaded":74,"rating":20,"num_ratings":75,"last_updated":76,"tested_up_to":48,"requires_at_least":25,"requires_php":26,"tags":77,"homepage":83,"download_link":84,"security_score":35,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"buddypress-extended-profile-translation","BuddyPress Extended Profile Translation","1.0","\u003Cp>If you have made your BuddyPress multilingual by installing it on a multisite WordPress with a different language for each site, you will find that the extended profile field names are available in only one language. Activate this plugin on any of your localized sub-sites (or network activate), go to\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Dashboard -> Users -> XProfile Translation\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>and translate the profile field names and descriptions to your liking. This plugin is BP_ENABLE_MULTIBLOG compatible.\u003C\u002Fp>\n","Multilingual Extended Profiles in multisite BuddyPress",3403,1,"2018-12-09T18:44:00.000Z",[78,79,80,81,82],"buddypress","localization","multilingual","multisite","translation","http:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fbuddypress-extended-profile-translation\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fbuddypress-extended-profile-translation.1.0.zip",{"slug":86,"name":87,"version":57,"author":5,"author_profile":6,"description":88,"short_description":89,"active_installs":45,"downloaded":90,"rating":20,"num_ratings":7,"last_updated":91,"tested_up_to":62,"requires_at_least":92,"requires_php":26,"tags":93,"homepage":99,"download_link":100,"security_score":35,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"mybb-cross-postalicious","MyBB Cross-Postalicious","\u003Cp>\u003Cstrong>Important:\u003C\u002Fstrong> I am not personally updating\u002Ffixing\u002Fsupporting this plugin any more, please see \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fa-note-about-updates-fixes-support-etc\" rel=\"ugc\">this thread\u003C\u002Fa> for details.\u003C\u002Fp>\n\u003Cp>I needed a plugin to:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Automatically cross-post a new thread to MyBB when I publish a blog post or page\u003C\u002Fli>\n\u003Cli>Automatically link the newly created thread from my WordPress post as a substitute for comments\u003C\u002Fli>\n\u003Cli>Display a widget to list recent topics, with forum ID whitelist\u003C\u002Fli>\n\u003Cli>Work on a multisite installation\u003C\u002Fli>\n\u003Cli>Keep MyBB as far away from WordPress as possible (see notes below)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>So I scratched my itch and now share the result.\u003C\u002Fp>\n\u003Cp>A couple of notes:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Tested with WordPress 3.5, 4.1.1 and MyBB 1.6\u003C\u002Fli>\n\u003Cli>Although at the time of writing MyBB seems like the best FOSS forum software no money can buy, the MyBB codebase, to me, seems like an unholy mess and rather dated. I didn’t like working with it, I don’t trust it and I don’t want any of it to touch my WordPress installation. I don’t want the two to share databases and I don’t want to interface directly with MyBB code. Therefore, I do a couple of simple database queries and when things get more complex (e.g. posting a thread), I have WordPress connect to MyBB via HTTP and post just like a regular user. As a matter of fact, your MyBB installation could run on a different server entirely as long as you have access to the MyBB database.\u003C\u002Fli>\n\u003Cli>No single-signon, I like to keep accounts separate.\u003C\u002Fli>\n\u003Cli>Forum posts are not listed as comments, there is a (configurable) link to the discussion thread instead. I actually had a “display posts as comments” feature in at first (still have the code somewhere if you want it), but then took it out for a couple of reasons. It was messy to deal with and in the end I felt that comments are less community oriented than a forum, so I’d rather point my users to the forum saying “Hey look, there is a real community, not just a blog post with comments, join in, have fun!”.\u003C\u002Fli>\n\u003Cli>Cross-Posts are to be updated from the edit page of the original post, directly updating a cross-post using your forum will result in the changes being lost the next time you update the original post.\u003C\u002Fli>\n\u003Cli>Deleting an original post will leave the cross-post untouched (you can manually link it to a different original post from the MyBBXP settings page).\u003C\u002Fli>\n\u003Cli>Deleting a cross-post using your forum will cause the original post to behave as if it were never cross-posted (it can be cross-posted anew).\u003C\u002Fli>\n\u003C\u002Ful>\n","Automatically cross-post your Wordpress posts to MyBB, also contains a 'recent forum topics' widget.",3859,"2015-02-25T12:23:00.000Z","3.5",[94,95,96,97,98],"cross","cross-posting","forum","mybb","mybbxp","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fmybb-cross-postalicious\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmybb-cross-postalicious.1.1.zip"]