# learnpress/4.4.1/inc/libraries/wp-background-process/wp-background-processing.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.1. 25 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.1/code/inc/libraries/wp-background-process/wp-background-processing.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.1/raw/inc/libraries/wp-background-process/wp-background-processing.php
- Modified: 2026-06-26T11:19:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.4.1/code/inc/libraries/wp-background-process/wp-background-processing.php#L10-L20`.

```php
<?php
/**
 * WP-Background Processing
 *
 * @package WP-Background-Processing
 */

/*
Plugin Name: WP Background Processing
Plugin URI: https://github.com/A5hleyRich/wp-background-processing
Description: Asynchronous requests and background processing in WordPress.
Author: Delicious Brains Inc.
Version: 1.0
Author URI: https://deliciousbrains.com/
GitHub Plugin URI: https://github.com/A5hleyRich/wp-background-processing
GitHub Branch: master
*/

if ( ! class_exists( 'WP_Async_Request' ) ) {
	require_once plugin_dir_path( __FILE__ ) . 'classes/wp-async-request.php';
}
if ( ! class_exists( 'WP_Background_Process' ) ) {
	require_once plugin_dir_path( __FILE__ ) . 'classes/wp-background-process.php';
}

```
