Code Monkey home page Code Monkey logo

wp-rocket-helpers's Introduction

WP Rocket Helpers

This repository hosts a number of plugins that target specific use cases for WP Rocket.

WP Rocket is known to be straight-forward and easy to use. However, sometimes a specific use case might require to alter its functionality.

The plugins in this repository provide solutions for some of the more common use cases that still seem too ā€œedge caseā€ to be included as options in WP Rocketā€™s user interface.

šŸ“‹ TL;DR

  • Helper Plugins, like WP Rocket, require PHP 5.4+.
  • Helper Plugins by design donā€™t have version numbers, because we donā€™t maintain them on a regular basis.
  • Helper Plugins provide a sustainable way to customize WP Rocketā€™s behaviour, because theyā€™re easier to spot than code snippets hidden in functions.php.
  • šŸš€ All plugins from this repository require WP Rocket to be up and running on your WordPress site. If you donā€™t use WP Rocket on your WordPress site, donā€™t install any of these plugins.
  • ā˜ļø Test before use! We donā€™t maintain all of these helper plugins actively at all times; some may target older versions of WP Rocket, or of other plugins. Some may even become outdated over time.

Table of contents

  1. General notes
  2. Minimum requirements
  3. How to use
  4. Naming conventions
  5. License
  6. Questions?

1. General notes

1.1. What are Helper Plugins?

We use the term ā€œHelper Pluginā€ to describe a simple WordPress plugin that customizes the behaviour of WP Rocket in some sort of way.

A Helper Plugin usually consists of 1 single PHP file, wrapped in a folder, downloadable and installable as a regular ZIP.

šŸ’” The main idea of Helper Plugins is easy-to-spot customizations.
Other than code snippets dumped into functions.php files, customizations that come wrapped in a little plugin can be spotted at a glance.

1.2. Whom are Helper Plugins for?

Helper Plugins are for all types of WP Rocket users:

  • People who just know how to upload a WordPress plugin
  • Technically well-versed site owners
  • Experienced developers
  • Our own support crew

WP Rocket users

If you donā€™t write code on a daily basis, you may want to contact our support team before using any of these plugins. (That is, unless you had contacted us already, and we sent you here.)

Developers

For developers and other code-savvy folk, many of WP Rocketā€™s functions, filters and action hooks used in these plugins are documented in our developer docs.

1.3. What are Helper Plugins not?

Helper Plugins are not works of elaborate software development. They are certainly not OOP, nor even class-basedā€”just simple, procedural functions.

Helper Plugins are not versioned, changelogged, or maintained in the usual sense. We donā€™t guarantee that all Helper Plugins work with all WP Rocket versions at all times; however, when a Helper Plugin gets published, or updated, it usually sports a basic ā€œLast tested withā€ section in the README file.

2. Minimum requirements

Helper Plugins fall under the same minimum requirements as WP Rocket: PHP 5.4 or greater, and WordPress 3.1 or greater at the moment of this writing (early 2018).

3. How to use

  • Each sub-folder in this repository contains at least 1 PHP file and 1 ZIP file.
  • PHP files are for code-savvy people to take a look at what the plugin does.
  • The ZIP file is the one you can download and install in WordPress.

šŸ’” Need help with downloading?
Hereā€™s an animated GIF on how to download one of the ZIP files from this repository._

3.1. Installation

  • Download one of the ZIP files from this repository.
  • Donā€™t unpack it! If your browser unpacks it automatically (can happen e.g. with Safari), you will have to re-ZIP it before proceeding.
  • Install the ZIP file through your WordPress admin interface: Go to Pluginsā†’AddĀ newā†’Upload, upload the ZIP file and activate the plugin.

3.2. Support

Support for WP Rocket is our business.Ā šŸ™‚
Got a valid license for WP Rocket? Feel free to use our dedicated support form!
Donā€™t own a valid license? You can get one right here!

4. Naming conventions

šŸ’” Folder names help grouping a folder in a list of other folders.
Thatā€™s why folder names for these Helper Plugins start with a wp-rocket- prefix, followed by feature and action keywords.

While file lists are not always sorted by name, itā€™s the default sort on GitHub and in many FTP clients.

Inside the WordPress plugin folder, a Helper Plugin should be listed next to WP Rocket itself, so a user or support agent can easily spot it.

In this GitHub repository, plugins that address the same feature (cache, lazyload, .htaccess rewrites ā€¦) are listed in groups, thus making it easier to skim the repo for a specific plugin.

4.1. Namespaces and functions

šŸ’” We use PHP namespaces to improve readability.
Replacing verbose function prefixes with a PHP namespace can make actual function names more comprehensive, and our code remains easy to read.

Itā€™s easy to over-engineer naming conventions, so we stick to a pragmatic rule of thumb when in doubt:

  1. Namespaces should be unique and consistent.
  2. Function names should be descriptive.

We rely on one consistent namespace for all Helper Plugins, and descriptive subnamespaces for each plugin:

namespace WP_Rocket\Helpers\{subnamespace(s)}

Or more specifically:

namespace WP_Rocket\Helpers\{feature}\{what_this_plugin_does}

Example:

namespace WP_Rocket\Helpers\cache\no_cache_for_admins;

function handle_cache_for_admins() {
    // Handle caching for logged-in administrators.
}
add_action( 'init', __NAMESPACE__ . '\handle_cache_for_admins' );

4.2. Naming placeholder URLs, domains, values

There is one domain on the internet for the sole purpose of ā€œillustrative examples in documentsā€: example.com

You can safely use it as anything you want:

https://example.com
http://example.com
https://sub-domain.example.com
[email protected]
ftp.example.com

šŸ’” Placeholders must be replaced!
Whenever you see example.com in the code of a Helper Plugin, make sure you replace it with a custom value before you activate the plugin!

5. License

All plugins in this repository, like WordPress and WP Rocket, are licensed under GNU General Public License v2 or later.

6. Questions?

Shoot us a message at: wp-rocket.me/contact/

wp-rocket-helpers's People

Contributors

alfonso100 avatar arunbasillal avatar dahmaniadame avatar ernee avatar geekpress avatar glueckpress avatar jlariza avatar jorgemartine00 avatar nataliadrause avatar nicomollet avatar piotrbak avatar sabrina-zeidan avatar sandyfigueroa avatar tabrisrp avatar vmanthos avatar webtrainingwheels avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.