22 lines
587 B
PHP
22 lines
587 B
PHP
<?php
|
||
/**
|
||
* Plugin Name: L’Agence Oueb antispam
|
||
* Plugin URI: https://lagenceoueb.tech
|
||
* Description: Shortcode to protect mail from spambots. To use this in your WordPress Content area all you have to do it wrap it in a short code.[email]john.doe@mysite.com[/email]
|
||
* Author: L’Agence Oueb
|
||
* Author URI: https://lagenceoueb.com
|
||
* Text Domain: lao-anti-spam
|
||
* Domain Path: /languages
|
||
* Version: 0.9.0
|
||
*
|
||
* @package Lao_Antispam
|
||
*/
|
||
|
||
|
||
if (!defined('ABSPATH')) exit;
|
||
|
||
require_once ('src/class-Hide-Email-Shortcode.php');
|
||
|
||
|
||
|
||
|