Описание
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.
Если вы являетесь разработчиком плагинов, и пользователь испытывает проблему, они могут установить этот плагин и отправить вам скриншот подвала консоли (или копировать текст), чтобы сообщить вам о проблемах установки.
Скриншоты
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)
Установка
- Загрузите файлы плагина в папку
/wp-content/plugins/
, или установите его через панель администратора WordPress. - Активируйте плагин на странице «Плагины» в WordPress
Часто задаваемые вопросы
-
Показать текущие версии WordPress, PHP, веб-сервера и MySQL в подвале консоли
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;}}'); });
Отзывы
Участники и разработчики
«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.