Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
andriilive committed Jun 8, 2022
0 parents commit a1bf9bb
Show file tree
Hide file tree
Showing 5 changed files with 485 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
.idea
vendor
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Disable all updates Plugin

`wp-disable-all-updates` plugin completely and for real disables all WordPress updates

+ Supports [Bedrock](https://roots.io/bedrock) `WordPress` installs

## Requirements

- Requires WP at least: `4.5`
- Tested up to WP: `6.0`
- Requires PHP: `7.1`

## Install & Activate plugin

### Composer (Bedrock Install)

`composer require andriilive/wp-disable-all-updates` at root

### ZIP Upload

1. Download `wp-disable-all-updates.zip` from [here](https://github.com/andriilive/wp-disable-generated-image-sizes/archive/refs/tags/0.1.0.zip)
2. Login to Wordpress Admin Dashboard
2. Navigate to `Plugins` > `Add new`
3. Press `Upload Plugin` and chose `wp-disable-all-updates.zip`
2. `Activate` the plugin through the `Plugins` menu in WordPress

### FTP

1. Upload folder `wp-disable-all-updates` to the `/wp-content/plugins/` directory
2. Activate the plugin through the 'Plugins' menu in WordPress

### Based on

Disable All WP Updates by Thomas Griffin plugin
16 changes: 16 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "andriilive/wp-disable-all-updates",
"description": "",
"keywords": ["wordpress", "plugin"],
"homepage": "https://github.com/andriilive/wp-disable-all-updates",
"authors": [
{
"name": "DigitalAndy",
"homepage": "https://github.com/andriilive"
}
],
"type": "wordpress-muplugin",
"require": {
"php": ">=5.6"
}
}
46 changes: 46 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
=== Wp Disable All Updates ===
Contributors: ()
Tags: updates, disable-updates, optimize, wp
Requires at least: 4.5
Tested up to: 6.0
Requires PHP: 7.1
Stable tag: 0.1.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Disables all WordPress updates

== Description ==

# Disable all updates Plugin

`wp-disable-all-updates` plugin completely and for real disables all WordPress updates &

+ Supports [Bedrock](https://roots.io/bedrock) `WordPress` installs

## Requirements

- Requires WP at least: `4.5`
- Tested up to WP: `6.0`
- Requires PHP: `7.1`

## Install & Activate plugin

### Composer (Bedrock Install)

`composer require andriilive/wp-disable-all-updates` at root

### ZIP Upload

1. Download `wp-disable-all-updates.zip` from [here](https://github.com/andriilive/wp-disable-all-updates/archive/refs/tags/0.1.0.zip)
2. Login to Wordpress Admin Dashboard
2. Navigate to `Plugins` > `Add new`
3. Press `Upload Plugin` and chose `wp-disable-all-updates.zip`
2. `Activate` the plugin through the `Plugins` menu in WordPress

### FTP

1. Upload folder `wp-disable-all-updates` to the `/wp-content/plugins/` directory
2. Activate the plugin through the 'Plugins' menu in WordPress

Disable All WP Updates by Thomas Griffin plugin
Loading

0 comments on commit a1bf9bb

Please sign in to comment.