# learnpress/4.4.4/config/settings/webhook.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.4. 27 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.4/code/config/settings/webhook.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.4/raw/config/settings/webhook.php
- Modified: 2026-08-03T03:26:42+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.4/code/config/settings/webhook.php#L10-L20`.

```php
<?php
/**
 * Setting tab Webhook.
 */

return apply_filters(
	'learn_press_webhook_settings',
	array(
		array(
			'type'  => 'title',
			'title' => esc_html__( 'Webhook Integration', 'learnpress' ),
			'id'    => 'lp_metabox_webhook_general',
		),
		array(
			'title'   => esc_html__( 'Enable Webhook', 'learnpress' ),
			'id'      => 'enable_webhook_integration',
			'default' => 'no',
			'type'    => 'checkbox',
			'desc'    => esc_html__( 'Enable webhook delivery. Webhook events are not delivered unless this option is enabled.', 'learnpress' ),
		),
		array(
			'type' => 'sectionend',
			'id'   => 'lp_metabox_webhook_general',
		),
	)
);

```
