Webmention
by Matthias Pfefferle 5 (8 reviews)

Webmention

Enable conversation across the web.

Webmention ranks #7,166 among WordPress.org plugins with 900+ active installations, is #255 of 2,878 in the Discussion & Community category, a 5/5 rating from 8 reviews, and was last updated Aug 31, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Compatible with WP 7.1
v5.9.1 Current Version v5.9.1
Updated 2 weeks ago Last Update on 31 Aug, 2026
Refreshed 10 hours ago Last Refreshed on
#255 of 2,878 in Discussion & Community Top 10% by installs Downloads -43.1% this week Actively maintained
View on WordPress.org
Rank
#7,166
+57 this week
Active Installs
900+
-6.9%
KW Avg Position
4.4
No change
Downloads
59.6K
+14 today
Support Resolved
0%
No change
Rating
100%
Review 5 out of 5
5 (8 reviews)

Next Milestone 1K

Total Progress 91%
900+ 1K+
147
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 9 more installs to reach 1K+

Rank Changes

7,161 7,171 7,181 7,191 7,201 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
7,159 7,174 7,189 7,204 7,219 01-09-2026 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
Current #7,166
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

10 20 30 40 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
0 100 200 300 400 500 600 01-09-2026 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

5.0
8 reviews
Overall 100%
5
8 (100%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Security History

Source: WPVulnerability

5 known vulnerabilities on record · 3 in the last 24 months · checked 1 month ago

  1. Webmention [webmention] < 5.8.1

    CVE-2026-10513 · Fixed in v5.8.1

  2. Webmention [webmention] < 5.7.0

    CVE-2026-0686 · Fixed in v5.7.0

  3. Webmention [webmention] < 5.7.0

    CVE-2026-0688 · Fixed in v5.7.0

  4. Webmention [webmention] < 4.0.9

    Fixed in v4.0.9

  5. Webmention [webmention] < 4.0.9

    Fixed in v4.0.9

TL;DR

AI summary of the plugin's readme

This plugin is for WordPress site owners who want their site to participate in cross-site conversations via the Webmention protocol. It solves the problem of notifying and displaying responses (like comments, likes, or RSVPs) when one site links to another, enabling a distributed social web.

  • Send Webmentions
  • Receive Webmentions
  • Built-in presentation display
  • Supports RSVP responses
  • Supports like responses
  • Supports bookmark responses

Frequently Asked Questions

Common questions about Webmention

Webmention is a simple way to automatically notify any URL when you link to it on your site. From the receivers perpective, it's a way to request notification when other sites link to it. That Sounds Like a Pingback or a Trackback Webmention is an update/replacement for Pingback or Trackback. Unlike the older protocols, the specification is recommended by the W3C as well as an active community of individuals using it on their sites.
On the Settings --> Discussion Page in WordPress: On the Webmention Settings page, decide which post types you want to enable Webmentions for. By default, posts and pages. Set a page to redirect homepage mentions to. This will automatically enable Webmentions for that page. If you want to enable a Webmention form in the comment section, check the box. You can use the send_webmention($source, $target) function and pass a source and a target or you can fire an action like do_action('send_webmention', $source, $target).
You can enable receiving Webmentions for attachments in Webmention settings. You can enable sending Webmentions for media links in the settings. Please note that most receivers of Webmentions do not support receiving them to image, audio, and video files. In order to support receiving them on WordPress, Webmention endpoint headers would have to be added at the webserver level.
Webmentions should be allowed on all URLs of a blog, however WordPress does not support this as only posts can have comments attached to them. The plugin currently handles only Webmentions on posts and allows you to set a page to receive homepage mentions. Even though it is not done automatically, it is very simple to add support for archives and URLs on your site by providing a post/page to show collect mentions. The plugin provides a simple filter for that. In the below example, if there is no page returned it will send mentions to a catch-all post. You can also have unique posts per URL. function handle_other_webmentions($id, $target) { // do nothing if id is set if ($id) { return $id; } // return "default" id if plugin can't find a post/page return 9247; } add_filter("webmention_post_id", "handle_other_webmentions", 10, 2);
The URL for the Webmention endpoint, which you can view in the source of your pages, should be excluded from any server or plugin caching. As Webmention uses the REST API endpoint system, most up to date caching plugins should exclude it by default.
Webmentions have the ability to act as rich comments. This includes showing avatars. If there is an avatar discovered, the URL for it will be stored. This can either be reflect something from the media library or a URL of a file. If the file is broken, it will store a local copy of the default gravatar image. There are no Webmention headers on some pages of my site Webmention headers are only shown if Webmentions are available for that particular URL. If you want to show it regardless, you can add below to your wp-config.php file. define( 'WEBMENTION_ALWAYS_SHOW_HEADERS', 1 );
This plugin includes several enhancements to the built-in WordPress commenting system to allow for enhancement, while allowing existing methods to offer customization. It customizes the classic defaults for WordPress to account for webmentions by using a custom comment walker that minimally changes to defaults. By default, many themes provide a custom callback to the wp_list_comments function. This plugin adds several enhancements to that. For one, the custom callbacks argument is usually a string with the function name. We enhance it to behave as normal in that case, but if an array is passed, to allow specific callbacks per the key of the array, or the 'all' key as a default. This means each comment type, which would be each webmention type or otherwise, can have its own custom callback. It introduces a new version of the default function for html5 comments, adding correct microformats2 markup, and for webmentions, a proper site citation, e.g. Bob @ Example.Com as well as a hook, webmention_comment_metadata which offers a comment object as the sole argument, to add arbitrary metadata. This would be overridden by any custom comment rendering done by themes. There is an option within the plugin to show webmentions not determined to be replies or comments inline, or to display them separately as avatar only lists. The wp_list_comments function is overridden to allow for the avatar_only option, which will render this, with a second option of overlay to overlay an icon reflecting the reaction type. Reactions are webmention types such as like, which there is no textual component to it. If you opt to display them as comments, the text will read that the author likes this post. While not all display options can be settings, we are looking to provide some simple options which could be customized in a theme if needed.

Sign In / Register

You need to sign in or register to use this feature.