数以万计的分享,源自一个简单的按钮, bShare 分享 是一个强大的网页分享插件工具,您的读者可以将您网站上精采的内容快速分享、转贴到社群网络上。
44 health vs 55 average across 1,135 Social plugins
High removal-risk signals
63/100Maintenance and integrity signals that tend to precede a WordPress.org removal. Not an official status, a heads-up to act.
- Long abandoned. No update in 15+ years — the top precursor to removal once a vulnerability is found.
- Compatibility drift. Tested only up to WordPress 3.1.0, well behind 6.8.
Directory ranking optimization
How it's scored →How well this listing is tuned to rank in WordPress.org search, on the factors an owner controls. Not popularity, optimization.
Under-optimized
Biggest win: Update recency
To rank higher: Last updated 5632 days ago — ship an update; wp.org decays a listing's search weight after ~180 days.
Get the full rank-higher report →Daily downloads
Since 2022-10-05 · 1,426 days · wp.org + Plugin Pulse archive
30-day downloads
Rolling 30-day volume · peaks are release surges
117
now · peak 222
Directory rank vs rivals
wp.org popularity rank over time · higher is better · when a rival's line climbs above yours, they've overtaken you
Update activity
How busy the existing users are, measured as downloads in the last 30 days for every 1,000 active sites. A spike means a new release everyone's pulling; a long, slow decline means an aging user base that updates less.
Release cadence
No release in a yearHow often this plugin actually ships. A steady rhythm is the maintenance signal a single "last updated" date can't show.
0
releases in the last 12 months
16.8y ago
latest release · v4.0
6
tagged releases on record
Recent releases
What its installed base runs
via wordpress.orgShare of active installs on each version of this plugin · 100% run the current release. Green is the current release; a big slice on older versions is a user base that has stopped updating.
Estimated active installs
The public count shows “20+”. Our estimate pins where the real number sits.
Refined from the date this plugin crossed into its current band.
Install history · since 2019-11-14 · 1,383 observations
Estimated value
What this plugin might earn a year, and what it might sell for. Modeled from public signals; we don't see anyone's books.
Est. annual revenue
Est. acquisition value
No paid tier is visible, so we don't put a figure on revenue or sale value: that would be guessing. The install base is a real asset to an acquirer, just not one public data lets us price. A small install base leaves thin data to model from.
Details
Recent review vibe
read from the latest 1 reviews to 2016-04-22The single review here rates it 4 stars and says it works well on blog post pages, though the reviewer hit a settings option that won't save and shared their own fix.
Recent reviews
All reviews on wp.org ↗- ★★★★★ hailong10.4y ago
A bug that the change to “在Feed中加入bShare” or “在非博客页面加入bShare” option can not be saved. I was directed to this plugin from the bShare website, it works well on the blog post view page. While I noticed there is bug as described above, if you are also struggling with this issue, please refer to my fix here: /17fav-bookmark-share/bookmark-share.php <?php /* Plugin Name: bShare 分享 Plugin URI: http://www.bshare.cn/wordpressRegister Description: 数以万计的分享,源自一个简单的按钮, <a href="http://www.bshare.cn/">bShare 分享</a> 是一个强大的网页分享插件工具,您的读者可以将您网站上精采的内容快速分享、转贴到社群网络上。<a href="options-general.php?page=bookmark-share.php">点击这里进行配置</a>。 Version: 4.2.0 Author: Buzzinate, Denis Author URI: http://www.bshare.cn */ load_plugin_textdomain('bshare'); if (get_option("bshare_code") == "") { update_option("bshare_code", '<a class="bshareDiv" target="_blank" href="http://www.bshare.cn/share">分享&收藏</a><script language="javascript" type="text/javascript" src="http://www.bshare.cn/button.js"></script>'); } if (get_option("bshare_pos") == "") { update_option("bshare_pos", "down"); } add_filter('the_content', 'bshare'); function bshare($content){ if(is_single() || (is_page() && get_option("bshare_inPage") != "false")) { if (get_option("bshare_pos") == "up") { $content = '<div style="margin-bottom:10px">'.htmlspecialchars_decode(get_option("bshare_code")).'</div>'.$content; } else { $content = $content.'<div style="margin-bottom:10px">'.htmlspecialchars_decode(get_option("bshare_code")).'</div>'; } } else if(is_feed() && get_option("bshare_inFeed") != "false") { global $post; $bshare_feed_code = '<p><a href="http://www.bshare.cn/share?url='.urlencode(get_permalink($post->ID)).'&title='.urlencode($post->post_title).'" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p>'; $content = $content.$bshare_feed_code; } return $content; } add_action('plugins_loaded', 'widget_sidebar_bshare'); function widget_sidebar_bshare() { function widget_bshare($args) { if(is_single()||is_page()) return; extract($args); echo $before_widget; echo $before_title . __('bShare分享', 'bshare') . $after_title; echo '<div style="margin:10px 0">'; echo htmlspecialchars_decode(get_option("bshare_code")) . '</div>'; echo $after_widget; } register_sidebar_widget(__('bShare分享', 'bshare'), 'widget_bshare'); } add_action('admin_menu', 'bshare_menu'); function bshare_menu() { add_options_page(__('bShare选项', 'bshare'), __('bShare分享', 'bshare'), 8, basename(__FILE__), 'bshare_options'); } function bshare_options() { if (getIsPostRequest()) { if (isset($_POST['bshare_code'])) { $code = stripslashes_deep($_POST['bshare_code']); update_option("bshare_code", htmlspecialchars($code)); } if ($_POST['bshare_infeed'] != "true") { update_option("bshare_infeed", "false"); } else { update_option("bshare_infeed", "true"); } if ($_POST['bshare_inpage'] != "true") { update_option("bshare_inpage", "false"); } else { update_option("bshare_inpage", "true"); } if (isset($_POST['bshare_pos'])) { update_option("bshare_pos", $_POST['bshare_pos']); } } echo '<div class="wrap">'; echo '<form name="bshare_form" method="post" action="">'; echo '<p>请将您在bshare.cn获取的嵌入代码复制至此处:</p>'; echo '<p><textarea style="height:100px;width:600px" name="bshare_code">'.get_option("bshare_code").'</textarea></p>'; echo '<p><input type="checkbox" name="bshare_infeed" value="true" ' . getChecked(get_option("bshare_infeed")) . '></input> 在Feed中加入bShare</p>'; echo '<p><input type="checkbox" name="bshare_inpage" value="true" ' . getChecked(get_option("bshare_inpage")) . '></input> 在非博客页面加入bShare</p>'; echo '<p>bShare按钮显示位置(对非浮动式按钮有效):<br/><input type="radio" name="bshare_pos" value="up" ' . getRadioChecked(get_option("bshare_pos"), 'up') . '> 文章上方<br/><input type="radio" name="bshare_pos" value="down" ' . getRadioChecked(get_option("bshare_pos"), 'down') . '> 文章下方</p>'; echo '<p class="submit"><input type="submit" value="submit"/></p>'; echo '</form>'; echo '</div>'; } function getChecked($val) { if ($val == "false") { return ''; } else { return 'checked="checked"'; } } function getRadioChecked($val, $cur) { if ($val == $cur) { return 'checked="checked"'; } else { return ''; } } /** * Returns whether this is a POST request. * @return boolean whether this is a POST request. */ function getIsPostRequest() { return isset($_SERVER['REQUEST_METHOD']) && !strcasecmp($_SERVER['REQUEST_METHOD'],'POST'); } ?>
Read on wp.org ↗
Behavioral tests
via WP HiveAutomated install-time checks, tested on PHP 7.2.16 · WP 5.2.4
Growth timeline
Install-tier crossings we have observed, and how long each tier took to outgrow
- 2026-05-21 10+ → 20+ up after 4 days in tier
- 2026-05-17 20+ → 10+ down after 6 days in tier
- 2026-05-11 10+ → 20+ up after 1 days in tier
- 2026-05-10 20+ → 10+ down after 3 days in tier
- 2026-05-07 10+ → 20+ up after 1 days in tier
- 2026-05-06 20+ → 10+ down after 14 days in tier
- 2026-04-22 10+ → 20+ up after 4 days in tier
- 2026-04-18 20+ → 10+ down after 168 days in tier
Competes with
The plugins that solve the same job, ranked by shared tags then reach, closest match first. The letter on the right is each plugin's health grade (A best, F worst).
- A AddThisChina(分享家:收藏&分享按钮) 10+ installs · 3.6★ · 3 shared tags D
- Б Бутон за споделяне 10+ installs · 4.1★ · 2 shared tags D
- S Simple Social Bookmarking Plugin 10+ installs · 3.6★ · 2 shared tags D
- W wp-share-list 10+ installs · 3.6★ · 2 shared tags D
- S ShareMacro 10+ installs · 3.6★ · 2 shared tags D
- S SinoShare 10+ installs · 3.6★ · 2 shared tags D
Embed this report card
Drop a live Pulse card for bShare 分享 into a readme, a review or a deck. It updates itself.
<iframe src="https://plugins.wpmayor.com/embed/17fav-bookmark-share" width="480" height="300" style="border:0" loading="lazy" title="bShare 分享 — Plugin Pulse"></iframe> bShare 分享: 20+ active installs, 4.0★ (1 reviews). Plugin Pulse (WP Mayor), as of 2026-08-31. https://plugins.wpmayor.com/plugin/17fav-bookmark-share