PluginProbe ʕ •ᴥ•ʔ
Rank Math SEO – AI SEO Tools to Dominate SEO Rankings / 1.0.239
Rank Math SEO – AI SEO Tools to Dominate SEO Rankings v1.0.239
1.0.273 1.0.272 1.0.271 1.0.271.1 1.0.270 1.0.269 trunk 1.0.216 1.0.217 1.0.218 1.0.219 1.0.220 1.0.221 1.0.222 1.0.223 1.0.224 1.0.225 1.0.226 1.0.227 1.0.227.1 1.0.228 1.0.229 1.0.230 1.0.231 1.0.232 1.0.233 1.0.234 1.0.234.1 1.0.235 1.0.236 1.0.237 1.0.238 1.0.239 1.0.240 1.0.241 1.0.242 1.0.243 1.0.244 1.0.245 1.0.246 1.0.247 1.0.248 1.0.249 1.0.250 1.0.251 1.0.251.1 1.0.252 1.0.252.1 1.0.253 1.0.254 1.0.255 1.0.256 1.0.257 1.0.258 1.0.259 1.0.259.1 1.0.260 1.0.261 1.0.262 1.0.263 1.0.264 1.0.264.1 1.0.265 1.0.266 1.0.266.1 1.0.267 1.0.268
seo-by-rank-math / vendor / a5hleyrich / wp-background-processing / wp-background-processing.php
seo-by-rank-math / vendor / a5hleyrich / wp-background-processing Last commit date
.circleci 3 years ago classes 1 year ago .phpcs.xml 2 years ago Makefile 1 year ago license.txt 7 years ago wp-background-processing.php 2 years ago
wp-background-processing.php
25 lines
1 <?php
2 /**
3 * WP-Background Processing
4 *
5 * @package WP-Background-Processing
6 */
7
8 /**
9 * Plugin Name: WP Background Processing
10 * Plugin URI: https://github.com/deliciousbrains/wp-background-processing
11 * Description: Asynchronous requests and background processing in WordPress.
12 * Author: Delicious Brains Inc.
13 * Version: 1.0
14 * Author URI: https://deliciousbrains.com/
15 * GitHub Plugin URI: https://github.com/deliciousbrains/wp-background-processing
16 * GitHub Branch: master
17 */
18
19 if ( ! class_exists( 'WP_Async_Request' ) ) {
20 require_once plugin_dir_path( __FILE__ ) . 'classes/wp-async-request.php';
21 }
22 if ( ! class_exists( 'WP_Background_Process' ) ) {
23 require_once plugin_dir_path( __FILE__ ) . 'classes/wp-background-process.php';
24 }
25