Version Info

外掛說明

This plugin displays the current WordPress version number along with the following environment in the admin footer:

  • Current WordPress version info, if there is an update available it displays the current and latest versions side by side
  • PHP version
  • Web Server used
  • MySQL version

What’s the reason for building this Plugin

I always disliked the fact that WordPress does not display the current version number in the footer whenever there is a new release.

If you are a plugin developer and a user experiences a problem, they could install this plugin and send you a screenshot of their admin footer (or copy the text of course) to inform you about the cornerstones of their setup.

螢幕擷圖

  • Default admin footer showing you the current (latest) Wordpress version
  • After activation you will get a lot more info in your admin footer
  • Default admin footer when you are not running the latest version of WordPress
  • If this plugin is active, you will see your currently installed version along the update info (and the additional info this plugin provides)

安裝方式

  1. Upload the plugin to your plugins directory (possibly /wp-content/plugins/), or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the ‘Plugins’ screen in WordPress

常見問題集

Footer Version Info is not showing on mobile

common.css hides the admin-footer on viewports smaller than 783px. To show the footer also on small viewports, add the following to a mu-plugin or your theme’s functions.php, etc.

add_action('admin_enqueue_scripts', function () {
    wp_add_inline_style('common', '@media screen and (max-width: 782px){#wpfooter {display: block;}}');
    wp_add_inline_style('admin-menu', '@media only screen and (max-width: 960px){.auto-fold #wpfooter{margin-left: 0px;}}');
});

使用者評論

2023 年 3 月 26 日
Simple but very useful plugin. Work as expected. No ads, no push to buy a pro version (there is none AFAIK).
2021 年 1 月 17 日 1 則留言
Way more information than I know how to use, but someday when I'm troubleshooting, I'm sure it will save me a lot of time looking it up elsewhere. All I really wanted was a quick way to get version numbers, and I see I also got memory, RAM and CPU, which will be great for comparisons before and after installing plugins, changing Web hosts, etc. I agree with the reviewer who requested PayPal in order to make a donation. The donation link takes me to a payment processor I never heard of, and when I decided to go ahead (what the heck, the credit card I'll use expires soon anyway), my bank declined the transaction. So I would have donated, but I'm not putting in a second credit card. I'll check again after I do taxes and decide how much money I have to spare. I want to donate to a number of plugin creators once I actually have an income stream.
2020 年 8 月 27 日 1 則留言
I like this plugin a lot. Sadly it doesn't show on mobile. I can only see it when opening WordPress from desktop.
閱讀全部 15 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈Version Info〉的開發相關工作。

參與者

〈Version Info〉外掛目前已有 5 個本地化語言版本。 感謝全部譯者為這個外掛做出的貢獻。

將〈Version Info〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.2.1

  • remove putenv to staging 🤦

1.2.0

  • If WP_ENVIRONMENT_TYPE is defined (either through PHP env var or constant), display this info.