Skip to content

Instantly share code, notes, and snippets.

View talentedaamer's full-sized avatar
🎯
WordPress, Laravel, JavaScript, Angular

Aamer Shahzad talentedaamer

🎯
WordPress, Laravel, JavaScript, Angular
View GitHub Profile
@elclanrs
elclanrs / email-confirmation.php
Last active July 26, 2022 00:11
Simple e-mail confirmation plugin for WordPress.
<?php
/**
* Plugin Name: Email Confirmation
* Description: Send an email to the user with confirmation code and store form data in database until user confirms.
* Author: Cedric Ruiz
*/
class EmailConfirmation
{
const PREFIX = 'email-confirmation-';