-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop support for older PHP and WP versions, prepare for 3.0 release
- Loading branch information
Showing
5 changed files
with
31 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
<?php | ||
/** | ||
* Plugin Name: Widget Disable | ||
* Plugin URI: https://required.com/services/wordpress-plugins/wp-widget-disable/ | ||
* Description: Disable sidebar and dashboard widgets with an easy to use interface. Simply use the checkboxes provided under <strong>Appearance -> Disable Widgets</strong> and select the widgets you'd like to hide. | ||
* Version: 2.1.0 | ||
* Author: required | ||
* Author URI: https://required.com | ||
* License: GPLv2+ | ||
* Text Domain: wp-widget-disable | ||
* Plugin Name: Widget Disable | ||
* Plugin URI: https://required.com/services/wordpress-plugins/wp-widget-disable/ | ||
* Description: Disable sidebar and dashboard widgets with an easy to use interface. Simply use the checkboxes provided under <strong>Appearance -> Disable Widgets</strong> and select the widgets you'd like to hide. | ||
* Version: 2.1.0 | ||
* Requires at least: 6.0 | ||
* Requires PHP: 7.4 | ||
* Author: required | ||
* Author URI: https://required.com | ||
* License: GPLv2+ | ||
* Text Domain: wp-widget-disable | ||
* | ||
* Copyright (c) 2015-2022 required (email: [email protected]) | ||
* Copyright (c) 2015-2023 required (email: [email protected]) | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License, version 2 or, at | ||
|
@@ -36,8 +38,8 @@ | |
$requirements_check = new WP_Requirements_Check( | ||
array( | ||
'title' => 'WP Widget Disable', | ||
'php' => '5.6', | ||
'wp' => '4.7', | ||
'php' => '7.4', | ||
'wp' => '6.0', | ||
'file' => __FILE__, | ||
) | ||
); | ||
|