2019-11-15 23:26:29 +01:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Module Name: Post by email
|
|
|
|
|
* Module Description: Publish posts by sending an email
|
|
|
|
|
* First Introduced: 2.0
|
|
|
|
|
* Sort Order: 14
|
|
|
|
|
* Requires Connection: Yes
|
2021-04-27 08:32:47 +02:00
|
|
|
* Requires User Connection: Yes
|
2019-11-15 23:26:29 +01:00
|
|
|
* Auto Activate: No
|
|
|
|
|
* Module Tags: Writing
|
|
|
|
|
* Feature: Writing
|
|
|
|
|
* Additional Search Queries: post by email, email
|
2020-05-06 17:20:49 +02:00
|
|
|
*
|
2021-04-27 08:32:47 +02:00
|
|
|
* @package automattic/jetpack
|
2019-11-15 23:26:29 +01:00
|
|
|
*/
|
|
|
|
|
|
2020-05-06 17:20:49 +02:00
|
|
|
/**
|
|
|
|
|
* Require the PBE Class.
|
|
|
|
|
*/
|
2020-12-10 14:04:11 +01:00
|
|
|
require_once __DIR__ . '/post-by-email/class-jetpack-post-by-email.php';
|
2020-05-06 17:20:49 +02:00
|
|
|
|
2019-11-15 23:26:29 +01:00
|
|
|
add_action( 'jetpack_modules_loaded', array( 'Jetpack_Post_By_Email', 'init' ) );
|
|
|
|
|
|
|
|
|
|
Jetpack::enable_module_configurable( __FILE__ );
|